Enum
SelectAllTextEvents

Specifies the names of the events that will automatically select the text in RadComboBox.

Definition

Namespace:Telerik.Windows.Controls

Assembly:Telerik.Windows.Controls.Input.dll

Syntax:

cs-api-definition
[Flags]
public enum SelectAllTextEvents

Fields

All

The text will be selected on all events.

Declaration

cs-api-definition
All = GotFocus | DropDownOpen | SelectionChanged

Field Value

SelectAllTextEvents

DropDownOpen

The text will be selected when the dropdown is opened.

Declaration

cs-api-definition
DropDownOpen = 2

Field Value

SelectAllTextEvents

GotFocus

The text will be selected when RadComboBox gets the focus.

Declaration

cs-api-definition
GotFocus = 1

Field Value

SelectAllTextEvents

None

The text will never be selected.

Declaration

cs-api-definition
None = 0

Field Value

SelectAllTextEvents

SelectionChanged

The text will be selected when the selection changes.

Declaration

cs-api-definition
SelectionChanged = 4

Field Value

SelectAllTextEvents