WrappingMode Enumeration

Indicates how the LineWrappingTextWriter class will wrap text at the maximum line length.

Definition

Namespace: Ookii.CommandLine
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 4.2.0+a4d3631e4dcc0970081ed435288efdebc1325f83
C#
public enum WrappingMode

Members

Disabled0 The text will not be wrapped at the maximum line length.
Enabled1 The text will be white-space wrapped at the maximum line length, and if there is no suitable white-space location to wrap the text, it will be wrapped at the line length.
EnabledNoForce2 The text will be white-space wrapped at the maximum line length. If there is no suitable white-space location to wrap the text, the line will not be wrapped.

See Also