LineWrappingTextWriter.IndentAfterEmptyLine Property

Gets or sets a value which indicates whether a line after an empty line should have indentation.

Definition

Namespace: Ookii.CommandLine
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 4.1.0+9df03b6173b5fc9d44dc39638758964dd7a0f4c7
C#
public bool IndentAfterEmptyLine { get; set; }

Property Value

Boolean
true if a line after an empty line should be indented; otherwise, false. The default value is false.

Remarks

By default, the LineWrappingTextWriter class will start lines that follow an empty line at the beginning of the line, regardless of the value of the Indent property. Set this property to true to apply indentation even to lines following an empty line.

See Also