PdfSaveOptionsAdditionalTextPositioning Property

A flag specifying whether to write additional text positioning operators or not.

Namespace:  Aspose.Words.Saving
Assembly:  Aspose.Words (in Aspose.Words.dll) Version: 20.3
Syntax
public bool AdditionalTextPositioning { get; set; }

Property Value

Type: Boolean
Remarks

If true, additional text positioning operators are written to the output PDF. This may help to overcome issues with inaccurate text positioning with some printers. The downside is the increased PDF document size.

The default value is false.

Examples
Show how to write additional text positioning operators.
Document doc = new Document(MyDir + "Paragraphs.docx");

PdfSaveOptions saveOptions = new PdfSaveOptions();
// This may help to overcome issues with inaccurate text positioning with some printers, even if the PDF looks fine,
// but the file size will increase due to higher text positioning precision used
saveOptions.AdditionalTextPositioning = true;
saveOptions.TextCompression = PdfTextCompression.None;

doc.Save(ArtifactsDir + "PdfSaveOptions.AdditionalTextPositioning.pdf", saveOptions);
See Also