Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions Document-Processing-toc.html
Original file line number Diff line number Diff line change
Expand Up @@ -4326,6 +4326,9 @@
</li>
</ul>
</li>
<li>
<a href="/document-processing/word/word-library/net/Performance-metrics">Performance Metrics</a>
</li>
<li>
<a href="/document-processing/word/word-library/net/Supported-and-Unsupported-Features">Supported and Unsupported Features</a>
</li>
Expand Down Expand Up @@ -4475,6 +4478,9 @@
<li>
<a href="/document-processing/word/conversions/word-to-pdf/net/Fallback-fonts-word-to-pdf">Fallback Fonts</a>
</li>
<li>
<a href="/document-processing/word/conversions/word-to-pdf/net/Performance-metrics">Performance Metrics</a>
</li>
<li>
<a href="/document-processing/word/conversions/word-to-pdf/net/Unsupported-elements-word-to-pdf">Unsupported Features</a>
</li>
Expand Down Expand Up @@ -4593,6 +4599,9 @@
<li>
<a href="/document-processing/word/conversions/word-to-image/net/Fallback-fonts-word-to-image">Fallback Fonts</a>
</li>
<li>
<a href="/document-processing/word/conversions/word-to-image/net/Performance-metrics">Performance Metrics</a>
</li>
<li>
<a href="/document-processing/word/conversions/word-to-image/net/Unsupported-elements-word-to-image">Unsupported Features</a>
</li>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down