#region Using Directives using System; #endregion Using Directives namespace ScintillaNET { /// /// The flags affecting how the fold is marked in the main text area (as well as in the margin). If the value /// changes for onscreen text, the display will redraw. /// [Flags] public enum FoldFlag { /// /// A line is drawn above the text if the fold is expanded. /// LineBeforeExpanded = 0x0002, /// /// A line is drawn above the text if the fold is collapsed. /// LineBeforeContracted = 0x0004, /// /// A line is drawn below the text if the fold is expanded. /// LineAfterExpanded = 0x0008, /// /// A line is drawn below the text if the fold is collapsed. /// LineAfterContracted = 0x0010, /// /// Display hexadecimal fold levels in line margin to aid debugging of folding. The appearance of this feature may change in the future. /// LevelNumbers = 0x0040, /// /// Experimental feature that has been removed. /// Box = 0x0001, } }