ApplySelectionColors Method
In This Topic
Applies the selection colors to a specific cell.
Syntax
'Declaration
Protected Overridable Sub ApplySelectionColors( _
ByVal As GridCellView, _
ByVal As Xamarin.Forms.Color, _
ByVal As Xamarin.Forms.Color, _
ByVal As Boolean _
)
'Usage
Dim instance As GridCellFactoryBase
Dim cell As GridCellView
Dim background As Xamarin.Forms.Color
Dim foreground As Xamarin.Forms.Color
Dim isEditing As Boolean
instance.ApplySelectionColors(cell, background, foreground, isEditing)
protected virtual void ApplySelectionColors(
GridCellView ,
Xamarin.Forms.Color ,
Xamarin.Forms.Color ,
bool
)
Parameters
- cell
- The cell.
- background
- The background.
- foreground
- The foreground.
- isEditing
- if set to
true
[is editing].
See Also