public int Indent { get; set; }
Public Property Indent As Integer
Get
Set
Dim instance As LineWrappingTextWriter
Dim value As Integer
value = instance.Indent
instance.Indent = value
public:
property int Indent {
int get ();
void set (int value);
}
Whenever a line break is encountered (either because of wrapping or because a line break was written to the LineWrappingTextWriter), the next line is indented by the number of characters specified by this property, unless the previous line was blank.
The output position can be reset to the start of the line after a line break by calling the ResetIndent method.