Skip to content

Commit 9b17f99

Browse files
committed
989050-ug1: Resolved CI failures.
1 parent 00541e5 commit 9b17f99

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Document-Processing/PDF/PDF-Library/NET/Working-with-Text.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -800,7 +800,7 @@ You can download a complete working sample from [GitHub](https://github.com/Sync
800800

801801
## Unit conversion in text layout
802802

803-
The [PdfUnitConvertor](https://help.syncfusion.com/cr/document-processing/Syncfusion.Pdf.Graphics.PdfUnitConvertor.html) class is used to accurately position and layout paragraph text within a PDF document. By converting measurements from inches to points, it ensures consistent margins and precise placement of content.
803+
The [PdfUnitConverter](https://help.syncfusion.com/cr/document-processing/Syncfusion.Pdf.Graphics.PdfUnitConvertor.html) class is used to accurately position and layout paragraph text within a PDF document. By converting measurements from inches to points, it ensures consistent margins and precise placement of content.
804804

805805
This example demonstrates how to use converted units to accurately position and format paragraph text within a PDF document.
806806

@@ -819,7 +819,7 @@ using (PdfDocument document = new PdfDocument())
819819
PdfPage page = document.Pages.Add();
820820

821821
// Initialize unit converter
822-
PdfUnitConvertor converter = new PdfUnitConvertor();
822+
PdfUnitConverter converter = new PdfUnitConverter();
823823

824824
// Convert margins from inches to points
825825
float margin = converter.ConvertUnits(1f, PdfGraphicsUnit.Inch, PdfGraphicsUnit.Point);
@@ -868,7 +868,7 @@ using (PdfDocument document = new PdfDocument())
868868
PdfPage page = document.Pages.Add();
869869

870870
// Initialize unit converter
871-
PdfUnitConvertor converter = new PdfUnitConvertor();
871+
PdfUnitConverter converter = new PdfUnitConverter();
872872

873873
// Convert margins from inches to points
874874
float margin = converter.ConvertUnits(1f, PdfGraphicsUnit.Inch, PdfGraphicsUnit.Point);
@@ -919,7 +919,7 @@ Module Program
919919
Dim page As PdfPage = document.Pages.Add()
920920

921921
' Initialize unit converter
922-
Dim converter As New PdfUnitConvertor()
922+
Dim converter As New PdfUnitConverter()
923923

924924
' Convert 1 inch margin to points
925925
Dim margin As Single = converter.ConvertUnits(1.0F, PdfGraphicsUnit.Inch, PdfGraphicsUnit.Point)

0 commit comments

Comments
 (0)