UIControlCellsGatheringCellColorsHandler Delegate
Delegate used to gather custom colors for cells.
Namespace: BeeMobile.DataGridAssembly: BeeMobile.DataGrid.NET48 (in BeeMobile.DataGrid.NET48.dll) Version: 4.8.1.19
public delegate void GatheringCellColorsHandler(
DataGridCell aCell,
bool bIsSelected,
DataGridColumn aColumn,
out Color aForeColor,
out Color aBackColor
)
Public Delegate Sub GatheringCellColorsHandler (
aCell As DataGridCell,
bIsSelected As Boolean,
aColumn As DataGridColumn,
<OutAttribute> ByRef aForeColor As Color,
<OutAttribute> ByRef aBackColor As Color
)
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.