Called when GridControl renders the row background.

Namespace: Dapfor.Wpf.Controls
Assembly: Dapfor.Wpf (in Dapfor.Wpf.dll) Version: 4.1.0.26317 (4.1.0.26317)

Syntax

C#
protected virtual Brush OnRowBackground(
	Row row,
	bool isAlternating,
	bool isGroup,
	Brush defaultColor
)
Visual Basic
Protected Overridable Function OnRowBackground ( 
	row As Row,
	isAlternating As Boolean,
	isGroup As Boolean,
	defaultColor As Brush
) As Brush
Visual C++
protected:
virtual Brush^ OnRowBackground(
	Row^ row, 
	bool isAlternating, 
	bool isGroup, 
	Brush^ defaultColor
)
F#
abstract OnRowBackground : 
        row : Row * 
        isAlternating : bool * 
        isGroup : bool * 
        defaultColor : Brush -> Brush 
override OnRowBackground : 
        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: Brush
A Brush to be used while background rendering.

See Also