public WrappingMode Wrapping { get; set; }
Public Property Wrapping As WrappingMode
Get
Set
Dim instance As LineWrappingTextWriter
Dim value As WrappingMode
value = instance.Wrapping
instance.Wrapping = value
public:
property WrappingMode Wrapping {
WrappingMode get ();
void set (WrappingMode value);
}
When this property is changed to WrappingModeDisabled the buffer will be flushed synchronously if not empty.
When this property is changed from WrappingModeDisabled to another value, if the last character written was not a new line, the current line may not be correctly wrapped.
Changing this property resets indentation so the next write will not be indented.
This property cannot be changed if there is no maximum line length.