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

Represents a masked editbox editor in RadGridView.

Definition

Constructors

Initializes a new instance of the RadMaskedEditBoxEditor class.

C#
public RadMaskedEditBoxEditor()

Properties

Gets the type of the editor value

C#
public override Type DataType { get; }

Overrides: BaseGridEditor.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 editor value.

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

Overrides: BaseInputEditor.Value

Methods

Begins the edit operation.

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()

Ends the edit operation.

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: BaseGridEditor.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.