Enum SwiftTextLines.WrapOption
Selects an option how to wrap lines that exceed a desired maximum line length.
Namespace: Subsembly.Swift
Assembly: Subsembly.Sepa.dll
Syntax
public enum WrapOption
Fields
Name | Description |
---|---|
Hard | Lines longer than the maximum line length are broken exactly at that length. |
SwiftField | Lines longer than the maximum line length are broken at exactly the max line length, however, care is taken that a new line does not start with the special swift field characters ':' or '-', which are not allowed at the beginning of a line. |
WordWrap | Lines longer than the maximum line length shall use word wrapping. Meaning, the are broken at the last space character within the maximum line length. |