diff --git a/Document-Processing-toc.html b/Document-Processing-toc.html index c14d6f703..7e5ded547 100644 --- a/Document-Processing-toc.html +++ b/Document-Processing-toc.html @@ -4326,6 +4326,9 @@ +
  • + Performance Metrics +
  • Supported and Unsupported Features
  • @@ -4475,6 +4478,9 @@
  • Fallback Fonts
  • +
  • + Performance Metrics +
  • Unsupported Features
  • @@ -4593,6 +4599,9 @@
  • Fallback Fonts
  • +
  • + Performance Metrics +
  • Unsupported Features
  • diff --git a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-ASP-NET-Core-Web-API.md b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-ASP-NET-Core-Web-API.md index be1219780..bf58bc718 100644 --- a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-ASP-NET-Core-Web-API.md +++ b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-ASP-NET-Core-Web-API.md @@ -129,7 +129,7 @@ using (HttpClient client = new HttpClient()) // Check if the response is successful if (response.IsSuccessStatusCode) { - // Read the content as a string + //Read the content as a string. Stream responseBody = await response.Content.ReadAsStreamAsync(); FileStream fileStream = File.Create("../../../Output/Output.jpeg"); responseBody.CopyTo(fileStream); diff --git a/Document-Processing/Word/Word-Library/NET/Working-with-Fields.md b/Document-Processing/Word/Word-Library/NET/Working-with-Fields.md index 917a71a8d..67933622f 100644 --- a/Document-Processing/Word/Word-Library/NET/Working-with-Fields.md +++ b/Document-Processing/Word/Word-Library/NET/Working-with-Fields.md @@ -302,6 +302,9 @@ You can download a complete working sample from [GitHub](https://github.com/Sync IF field compares two values and updates the field result with true text, when comparison succeeds otherwise false text. +To quickly start working with IF field, please check out this video: +{% youtube "https://www.youtube.com/watch?v=us1FhWurqHw" %} + To learn more about IF field and its syntax in Microsoft Word, refer to the [MSDN article](https://support.microsoft.com/en-us/office/field-codes-if-field-9f79e82f-e53b-4ff5-9d2c-ae3b22b7eb5e?ui=en-us&rs=en-us&ad=us#) The following code example explains how to add an If field to a Word document.