RichTextBoxSelectionTypes Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
- Attributes
Fields
Name | Value | Description |
---|---|---|
Empty | 0 | No text is selected in the current selection. |
Text | 1 | The current selection contains only text. |
Object | 2 | At least one Object Linking and Embedding (OLE) object is selected. |
MultiChar | 4 | More than one character is selected. |
MultiObject | 8 | More than one Object Linking and Embedding (OLE) object is selected. |
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.