EditorEventArgs(GridViewBase, Int32, GridColumn, IBaseEdit) Constructor
Initializes a new instance of the EditorEventArgs class.
Namespace: DevExpress.Xpf.Grid
Assembly: DevExpress.Xpf.Grid.v24.2.dll
NuGet Package: DevExpress.Wpf.Grid.Core
Declaration
public EditorEventArgs(
GridViewBase view,
int rowHandle,
GridColumn column,
IBaseEdit editor
)
Parameters
Name | Type | Description |
---|---|---|
view | GridViewBase | A GridViewBase descendant that represents a view. |
rowHandle | Int32 | A zero-based integer value that specifies the row handle. This value is assigned to the EditorEventArgsBase.RowHandle property. |
column | GridColumn | A GridColumn object that represents the column. This value is assigned to the EditorEventArgsBase.Column property. |
editor | DevExpress.Xpf.Editors.IBaseEdit | The in-place editor for which an event has been raised. This value is assigned to the EditorEventArgs.Editor property. |
See Also