PdfWordWrapType Enumeration
|
Specifies the types of text wrapping.
Namespace:
Spire.Pdf.Graphics
Assembly:
Spire.Pdf (in Spire.Pdf.dll) Version: 11.3.7.0 (11.3.7.1046)
Syntax
public enum PdfWordWrapType
Public Enumeration PdfWordWrapType
public enum class PdfWordWrapType
Members
|
Member name
|
Value
|
Description
|
|
None
|
0
|
Text wrapping between lines when formatting within a rectangle is disabled.
|
|
Word
|
1
|
Text is wrapped by words. If there is a word that is longer than bounds' width, this word is wrapped by characters.
|
|
WordOnly
|
2
|
Text is wrapped by words. If there is a word that is longer than bounds' width, it won't be wrapped at all
and the process will be finished.
|
|
Character
|
3
|
Text is wrapped by characters. In this case the word at the end of the text line can be split.
|
See Also