PdfSaveOptions.WriteWithoutFormatting Property

Gets or sets a value indicating whether to write PDF data without formatting (without whitespaces needed only for humans).

Namespace:  BitMiracle.Docotic.Pdf
Assembly:  BitMiracle.Docotic.Pdf (in BitMiracle.Docotic.Pdf.dll)

Syntax

C#
public bool WriteWithoutFormatting { get; set; }
VB
Public Property WriteWithoutFormatting As Boolean
	Get
	Set

Property Value

Type: Boolean
true if library should write PDF data without formatting; otherwise, false.

Remarks

Default value: true.

Setting this property to true will cause library to use very minimum of whitespace characters when saving PDF files. It helps to produce smaller output files but may be not very convenient if you want to debug library output. Setting this property to false will cause library to write content of PDF file in human-readable form.

See Also