Enum SeparatorOptions
Specifies options for highlighting and separating lines within Edit control.
This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
[Flags]
public enum SeparatorOptions
Fields
HideHighlighting = 2Specifies that current line in Edit control should not be highlighted when control looses input focus.
HighlightCurrentLine = 1Specifies that current line in Edit control should be highlighted.
None = 0Specifies that no flags are in effect.
SeparateBeyondEof = 32Specifies that Line separator is drawn between lines beyond end of file.
SeparateContent = 16Specifies that Line separator is drawn between separate sections of the text, for example between methods.
SeparateLines = 4Specifies that lines are visually separated in Edit control.
SeparateWrapLines = 8Specifies that Line separator is drawn between lines that are dropped due to word break procedure.