public void ResetIndent()
Public Sub ResetIndent
Dim instance As LineWrappingTextWriter
instance.ResetIndent()
public:
void ResetIndent()
The ResetIndent method will reset the output position to the beginning of the current line. It does not modify the Indent property, so the text will be indented again the next time a line break is written to the output.
If the current line buffer is not empty, it will be flushed to the BaseWriter, followed by a new line before the indentation is reset. If the current line buffer is empty (a line containing only indentation is considered empty), the output position is simply reset to the beginning of the line without writing anything to the base writer.