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

CustomColumnDisplayTextEventArgs.GroupRowHandle Property

Gets the handle of the currently processed group row. Returns the GridControl.InvalidRowHandle value if the CustomColumnDisplayText event is not called for a group row.

Namespace: DevExpress.XtraGrid.Views.Base

Assembly: DevExpress.XtraGrid.v19.1.dll

Declaration

public int GroupRowHandle { get; }

Property Value

Type Description
Int32

The handle of the currently processed group row.

Remarks

If the CustomColumnDisplayText event is called to get the display text of a column value displayed within a group row, the GroupRowHandle property returns the handle of the currently processed group row and the CustomColumnDisplayTextEventArgs.IsForGroupRow property returns true.

If the CustomColumnDisplayText event is called to get the display text of column values displayed in other places, the GroupRowHandle property returns the GridControl.InvalidRowHandle value and the CustomColumnDisplayTextEventArgs.IsForGroupRow property returns false.

See Also