Enum SelectionOptions
Defines appearance and behavior of selected text.
This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
[Flags]
public enum SelectionOptions
Fields
ClearOnDrag = 65536Specifies that selection should be deleted when dragging from external source.
ConvertToSpacesOnPaste = 16384Specifies that selection should convert all tabs to spaces in the text being pasted when Lines.UseSpaces is on.
CopyLineWhenEmpty = 131072Specifies that copy and cut operation should process entire line when selection is empty.
DeselectOnCopy = 64Specifies that selection should be unselected when selected text copies to the Clipboard.
DeselectOnDblClick = 8192Specifies that selection should be cleared by dblclick.
DeselectOnDrag = 2097152Specifies that selection should be unselected after text is dragged into the Editor.
DisableCodeSnippetOnTab = 262144Specifies that Edit control should not try to find and insert code snippet when tab key is pressed.
DisableDragging = 2Disables dragging the selected text.
DisableSelection = 1Disables to select any text.
DisableSelectionByMouse = 8388608Disables to select any text by mouse movement.
DrawBorder = 2048Specifies that Edit control should draw border around selection.
ExtendedBlockMode = 524288Specifies that text entered in block selection mode affects all selected lines.
HideSelection = 16Specifies that selected text should be draw as unselected text when control lost focus.
HighlightSelectedWords = 4194304Specifies that the Edit control should select all instances of the chosen words.
None = 0Specifies that no flags are in effect.
OverwriteBlocks = 256Specifies that selected text should be replaced of text with whatever is typed next.
PersistentBlocks = 128Specifies that selected text should be retained even when the cursor is moved, until a new block is selected.
RtfClipboard = 32768Specifies that selection should copy it's content clipboard in rtf format.
SelectBeyondEol = 4Specifies that selection is drawn beyond end of line.
SelectLineOnDblClick = 32Specifies that whole line should be selected instead of single word when user double clicks on some text.
SelectLineOnTripleClick = 4096Specifies that whole line should be selected when user triple clicks on some text.
SelectWordOnCtrlClick = 1048576Specifies that word should be selected when user clicks on some text holding Ctrl Key.
SmartFormat = 512Specifies that selected text should be formatted according to syntax rules when pasting.
UseColors = 8Specifies that selection should paint preserving colors of the text fragments.
WordSelect = 1024Specifies that Edit control should select words instead of single characters.