PdfTextWhitespaces Enumeration |
Specifies how whitespace insertion is handled when extracting text from PDF content.
Namespace: SautinSoft.Pdf.ContentAssembly: SautinSoft.Pdf (in SautinSoft.Pdf.dll) Version: 2026.5.19
Syntax[FlagsAttribute]
public enum PdfTextWhitespaces
<FlagsAttribute>
Public Enumeration PdfTextWhitespaces
Members| Member name | Value | Description |
|---|
| None | 0 |
No character is inserted in the text.
|
| Blank | 1 |
The insignificant Unicode 'SPACE' (U+0020) characters and NewLineChars characters are inserted in the text where appropriate to simulate distances between words in a line and distances between lines.
|
| NewLine | 2 |
The NewLineChars is inserted in the text where appropriate.
|
| Space | 4 |
The Unicode 'SPACE' (U+0020) character is inserted in the text where appropriate.
|
See Also