Skip to main content
A newer version of this page is available. .

GetCustomRowCellEditEventArgs Class

Provides data for the VGridControlBase.RecordCellStyle event.

Namespace: DevExpress.XtraVerticalGrid.Events

Assembly: DevExpress.XtraVerticalGrid.v18.1.dll

Declaration

public class GetCustomRowCellEditEventArgs :
    RowCellEventArgs

Remarks

The VGridControlBase.RecordCellStyle event enables you to assign editors to individual cells. Thus, the GetCustomRowCellEditEventArgs class provides a means to identify the currently processed cell and specify this cell’s editor. The cell is identified using the inherited RowEventArgs.Row, RowCellEventArgs.RecordIndex and RowCellEventArgs.CellIndex properties. The GetCustomRowCellEditEventArgs.RepositoryItem property specifies the editor to be used.

GetCustomRowCellEditEventArgs objects are automatically created, initialized and passed to VGridControlBase.RecordCellStyle event handlers.

The following code snippets (auto-collected from DevExpress Examples) contain references to the GetCustomRowCellEditEventArgs class.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

Inheritance

Object
EventArgs
RowEventArgs
RowCellEventArgs
GetCustomRowCellEditEventArgs
See Also