Skip to content

Commit d9d7b88

Browse files
Merge pull request #1696 from syncfusion-content/974763-Youtube-Video-If-Field-hotfix
974763 – Added YouTube video link to IF field documentation in DocIO UG
2 parents 98e9056 + b58a083 commit d9d7b88

File tree

3 files changed

+13
-1
lines changed

3 files changed

+13
-1
lines changed

Document-Processing-toc.html

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4326,6 +4326,9 @@
43264326
</li>
43274327
</ul>
43284328
</li>
4329+
<li>
4330+
<a href="/document-processing/word/word-library/net/Performance-metrics">Performance Metrics</a>
4331+
</li>
43294332
<li>
43304333
<a href="/document-processing/word/word-library/net/Supported-and-Unsupported-Features">Supported and Unsupported Features</a>
43314334
</li>
@@ -4475,6 +4478,9 @@
44754478
<li>
44764479
<a href="/document-processing/word/conversions/word-to-pdf/net/Fallback-fonts-word-to-pdf">Fallback Fonts</a>
44774480
</li>
4481+
<li>
4482+
<a href="/document-processing/word/conversions/word-to-pdf/net/Performance-metrics">Performance Metrics</a>
4483+
</li>
44784484
<li>
44794485
<a href="/document-processing/word/conversions/word-to-pdf/net/Unsupported-elements-word-to-pdf">Unsupported Features</a>
44804486
</li>
@@ -4593,6 +4599,9 @@
45934599
<li>
45944600
<a href="/document-processing/word/conversions/word-to-image/net/Fallback-fonts-word-to-image">Fallback Fonts</a>
45954601
</li>
4602+
<li>
4603+
<a href="/document-processing/word/conversions/word-to-image/net/Performance-metrics">Performance Metrics</a>
4604+
</li>
45964605
<li>
45974606
<a href="/document-processing/word/conversions/word-to-image/net/Unsupported-elements-word-to-image">Unsupported Features</a>
45984607
</li>

Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-ASP-NET-Core-Web-API.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ using (HttpClient client = new HttpClient())
129129
// Check if the response is successful
130130
if (response.IsSuccessStatusCode)
131131
{
132-
// Read the content as a string
132+
//Read the content as a string.
133133
Stream responseBody = await response.Content.ReadAsStreamAsync();
134134
FileStream fileStream = File.Create("../../../Output/Output.jpeg");
135135
responseBody.CopyTo(fileStream);

Document-Processing/Word/Word-Library/NET/Working-with-Fields.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -302,6 +302,9 @@ You can download a complete working sample from [GitHub](https://github.com/Sync
302302

303303
IF field compares two values and updates the field result with true text, when comparison succeeds otherwise false text.
304304

305+
To quickly start working with IF field, please check out this video:
306+
{% youtube "https://www.youtube.com/watch?v=us1FhWurqHw" %}
307+
305308
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#)
306309

307310
The following code example explains how to add an If field to a Word document.

0 commit comments

Comments
 (0)