RichTextBoxSelectionTypes Enum

Definition

Specifies the type of selection in a RichTextBox control.

This enumeration supports a bitwise combination of its member values.

public enum class RichTextBoxSelectionTypes
[System.Flags]
public enum RichTextBoxSelectionTypes
[<System.Flags>]
type RichTextBoxSelectionTypes = 
Public Enum RichTextBoxSelectionTypes
Inheritance
RichTextBoxSelectionTypes
Attributes

Fields

Empty 0

No text is selected in the current selection.

MultiChar 4

More than one character is selected.

MultiObject 8

More than one Object Linking and Embedding (OLE) object is selected.

Object 2

At least one Object Linking and Embedding (OLE) object is selected.

Text 1

The current selection contains only text.

Remarks

Use the members of this enumeration to determine the value of the SelectionType property of the RichTextBox class. The RichTextBox.SelectionType property can return any combination of values from this enumeration.

Applies to

See also