Skip to content

Commit 907a7f3

Browse files
committed
Added link to "Run" and note for fonts in PDF Net Standard
1 parent 1f51f12 commit 907a7f3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

knowledge-base/wordsprocessing-globally-change-font-radflowdocument.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ This article demonstrates how to recursively iterate through all text runs in a
2828
The solution involves three key steps:
2929

3030
1. Import the document from your source format
31-
2. Recursively iterate through all **Run** elements in the document and change their font
31+
2. Recursively iterate through all [Run]({%slug radwordsprocessing-model-run%}) elements in the document and change their font
3232
3. Export the document to your desired format
3333

3434
Here's a complete code example that demonstrates how to change all fonts in a **RadFlowDocument** to _Arial_ before exporting to PDF:
@@ -138,6 +138,8 @@ foreach (Run run in radFlowDocument.EnumerateChildrenOfType<Run>())
138138
}
139139
```
140140

141+
>note In **.NET Standard**, font handling for PDF export differs from other frameworks. System fonts may not be properly embedded or may use fallback fonts which can affect text appearance and layout in documents exported to PDF. For more details on how to resolve this, see the [Export section of the Flow PdfFormatProvider]({%slug radwordsprocessing-formats-and-conversion-pdf-pdfformatprovider%}#export).
142+
141143
## See Also
142144

143145
* [RadFlowDocument Overview]({%slug radwordsprocessing-model-radflowdocument%})

0 commit comments

Comments
 (0)