Enum GutterOptions
Defines gutter appearance and behavior displayed at the left size of the Edit control.
This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
[Flags]
public enum GutterOptions
Fields
None = 0Specifies that no flags are in effect.
PaintBookMarks = 8Specifies that bookmarks should be drawn.
PaintCodeActions = 128Specifies that code action images should be drawn.
PaintCodeActionsOnGutter = 256Specifies that code action images should be drawn on gutter area.
PaintLineModificators = 16Specifies that line modificators (color stitch that indicates that the line content is modified, unmodified or saved) should be drawn.
PaintLineNumbers = 1Specifies that numbers of lines should be drawn.
PaintLinesBeyondEof = 4Specifies that numbers of lines should be drawn beyond end of file.
PaintLinesOnGutter = 2Specifies that numbers of lines should be drawn at the gutter area rather than beyond the gutter.
PaintUserMargin = 32Specifies that user margin (allowing to draw additional information) should be drawn.
SelectLineOnClick = 64Specifies that entire line should be selected while user holds "Shift" key and left clicks mouse on gutter.