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

Provides data for the EditorRequired event.

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.GridView.dll

Syntax:

C#
public class VirtualGridEditorRequiredEventArgs : VirtualGridCellEventArgs

Inheritance: objectEventArgsVirtualGridEventArgsVirtualGridCellEventArgsVirtualGridEditorRequiredEventArgs

Inherited Members VirtualGridCellEventArgs.RowIndexVirtualGridCellEventArgs.ColumnIndexVirtualGridEventArgs.ViewInfoEventArgs.Empty

Constructors

Initializes a new instance of the VirtualGridEditorRequiredEventArgs class.

C#
public VirtualGridEditorRequiredEventArgs(IInputEditor editor, int rowIndex, int columnIndex, VirtualGridViewInfo viewInfo)
Parameters:editorIInputEditor

The editor.

rowIndexint

Index of the row.

columnIndexint

Index of the column.

viewInfoVirtualGridViewInfo

The view info.

Properties

Gets or sets a value indicating whether the event is canceled.

C#
public bool Cancel { get; set; }

Gets or sets the editor to be used.

C#
public IInputEditor Editor { get; set; }