UIControlCellsGatheringCellColorsHandler Delegate

Delegate used to gather custom colors for cells.

Definition

Namespace: BeeMobile.DataGrid
Assembly: BeeMobile.DataGrid.NET48 (in BeeMobile.DataGrid.NET48.dll) Version: 4.8.1.19
C#
public delegate void GatheringCellColorsHandler(
	DataGridCell aCell,
	bool bIsSelected,
	DataGridColumn aColumn,
	out Color aForeColor,
	out Color aBackColor
)

Parameters

aCell  DataGridCell
Reference to cell for which the colors should be gathered.
bIsSelected  Boolean
True if the cell is currently selected; false otherwise.
aColumn  DataGridColumn
A DataGridColumn in which this cell belongs.
aForeColor  Color
Forecolor for the cell.
aBackColor  Color
Backcolor for the cell.

See Also