New to Telerik UI for WPFStart a free 30-day trial

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:

C#
[Flags]
public enum SelectAllTextEvents

Fields

The text will be selected on all events.

C#
All = GotFocus | DropDownOpen | SelectionChanged

The text will be selected when the dropdown is opened.

C#
DropDownOpen = 2

The text will be selected when RadComboBox gets the focus.

C#
GotFocus = 1

The text will never be selected.

C#
None = 0

The text will be selected when the selection changes.

C#
SelectionChanged = 4