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

Represents a masked editbox editor in RadVirtualGrid.

Definition

Constructors

Initializes a new instance of the VirtualGridMaskedEditBoxEditor class.

C#
public VirtualGridMaskedEditBoxEditor()

Properties

Gets the type of the editor value

C#
public override Type DataType { get; }

Overrides: BaseVirtualGridEditor.DataType

Gets the instance of this editor.

C#
public RadMaskedEditBoxEditorElement MaskTextBox { get; }

Gets or sets the prompt text that is displayed when the TextBox contains no text.

C#
public string NullValue { get; set; }

Gets or sets the value.

C#
public override object Value { get; set; }
Property Value:

The value.

Overrides: BaseInputEditor.Value

Methods

Starts the editing process. Used internally in RadGridView.

C#
public override void BeginEdit()

Overrides: BaseInputEditor.BeginEdit()

Clears the editor value if needed.

C#
protected virtual void ClearEditorValueIfNeeded()

Creates a new editor element.

C#
protected override RadElement CreateEditorElement()
Returns:

RadElement

a RadElement if successful

Overrides: BaseInputEditor.CreateEditorElement()

Finishes the editing process. Used internally in RadGridView.

C#
public override bool EndEdit()
Returns:

bool

Overrides: BaseInputEditor.EndEdit()

Translates system key down events to the owner element.

C#
public override void OnKeyDown(KeyEventArgs e)
Parameters:eKeyEventArgs

Overrides: BaseVirtualGridEditor.OnKeyDown(KeyEventArgs)

Handles the key up events in the editor.

C#
protected virtual void OnKeyUp(KeyEventArgs e)
Parameters:eKeyEventArgs

A System.Windows.Forms.KeyEventArgs that contains the event data.