Specifies the types of text wrapping.

Namespace: Spire.Pdf.Graphics
Assembly: 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

MemberValueDescription
None0
Text wrapping between lines when formatting within a rectangle is disabled.
Word1
Text is wrapped by words. If there is a word that is longer than bounds' width, this word is wrapped by characters.
WordOnly2
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.
Character3
Text is wrapped by characters. In this case the word at the end of the text line can be split.

See Also