Enum
PopupEditorState

This enumerator defines the states of a Popup Editor. This enumerator is used internally in a Popup Editor to differentiate between states and thus properly manage the user input.

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.GridView.dll

Syntax:

cs-api-definition
public enum PopupEditorState

Fields

Filtering

A complete match of the user input is found in the data and displayed in the text editor of the control.

Declaration

cs-api-definition
Filtering = 2

Field Value

PopupEditorState

Ready

The Popup editor is ready for user input.

Declaration

cs-api-definition
Ready = 0

Field Value

PopupEditorState

Rotating

The user selects the next item in the control by double clicking on the text editor.

Declaration

cs-api-definition
Rotating = 3

Field Value

PopupEditorState

Selecting

The user selects an item from the popup of the editor.

Declaration

cs-api-definition
Selecting = 4

Field Value

PopupEditorState

Typing

The user types in the text editor of the control.

Declaration

cs-api-definition
Typing = 1

Field Value

PopupEditorState