Namespace: Dapfor.Wpf.ControlsAssembly: Dapfor.Wpf (in Dapfor.Wpf.dll) Version: 4.1.0.26317 (4.1.0.26317)
Syntax
C# |
---|
protected virtual Brush OnRowForeground(
Row row,
bool isAlternating,
bool isGroup,
Brush defaultColor
) |
Visual Basic |
---|
Protected Overridable Function OnRowForeground (
row As Row,
isAlternating As Boolean,
isGroup As Boolean,
defaultColor As Brush
) As Brush |
Visual C++ |
---|
protected:
virtual Brush^ OnRowForeground(
Row^ row,
bool isAlternating,
bool isGroup,
Brush^ defaultColor
) |
F# |
---|
abstract OnRowForeground :
row : Row *
isAlternating : bool *
isGroup : bool *
defaultColor : Brush -> Brush
override OnRowForeground :
row : Row *
isAlternating : bool *
isGroup : bool *
defaultColor : Brush -> Brush |
Parameters
- row
- Type: Dapfor.Wpf.Controls..::..Row
The row.
- isAlternating
- Type: System..::..Boolean
if set to true if the Row is alternating.
- isGroup
- Type: System..::..Boolean
if set to true if the Row is a group.
- defaultColor
- Type: System.Windows.Media..::..Brush
The default color.
Return Value
Type:
BrushA
Brush to be used while foreground rendering.
See Also