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

Represents a checkbox editor in RadGridView.

Definition

Constructors

Initializes a new instance of the RadCheckBoxEditor class.

C#
public RadCheckBoxEditor()

Properties

Gets the type of the editor value

C#
public override Type DataType { get; }

Overrides: BaseGridEditor.DataType

Gets whether the editor is modified.

C#
public override bool IsModified { get; }
Property Value:

The is modified.

Overrides: BaseInputEditor.IsModified

Gets or sets a value indicating whether this is a three state checkbox.

C#
public bool ThreeState { 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()

Creates a new editor element.

C#
protected override RadElement CreateEditorElement()
Returns:

RadElement

a RadElement if successful

Overrides: BaseInputEditor.CreateEditorElement()

Initializes the specified owner.

C#
public override void Initialize(object owner, object value)
Parameters:ownerobject

The owner.

valueobject

The value.

Overrides: BaseGridEditor.Initialize(object, object)

Translates mouse wheel events to the owner element.

C#
public override void OnMouseWheel(MouseEventArgs mouseEventArgs)
Parameters:mouseEventArgsMouseEventArgs

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

Overrides: BaseGridEditor.OnMouseWheel(MouseEventArgs)

Toggles the checkbox state.

C#
public void ToggleState()