Enum IndentOptions
Defines behavior of Edit control when user presses Enter to insert new text line.
This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
[Flags]
public enum IndentOptions
Fields
AutoIndent = 1Positions the cursor under the first non blank character of the preceding non blank line when user presses Enter.
JumpToIndent = 8Jumps to indent position rather than adding tabs or spaces.
None = 0No indentation.
SmartIndent = 2Positions the cursor to the line indentation level, obtained from parser supporting option
SyntaxOptions.SmartIndentwhen user presses Enter.UsePrevIndent = 4Uses spaces and tabs from previous line when indenting the line.