Specifies the types of text wrapping.
Namespace: Spire.Pdf.GraphicsAssembly: Spire.Pdf (in Spire.Pdf.dll) Version: 6.2.6.0 (6.2.6.2020)
Syntax
C# | Visual Basic | Visual C++ | F# |
public enum PdfWordWrapType
Public Enumeration PdfWordWrapType
public enum class PdfWordWrapType
type PdfWordWrapType
Members
Member | 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.
|