Namespace: Dapfor.Wpf.ControlsAssembly: Dapfor.Wpf (in Dapfor.Wpf.dll) Version: 4.1.0.26317 (4.1.0.26317)
Syntax
C# |
---|
public GridControlRowBrushEventArgs(
GridControl grid,
Row row,
bool isAlternating,
bool isGroup,
Brush brush
) |
Visual Basic |
---|
Public Sub New (
grid As GridControl,
row As Row,
isAlternating As Boolean,
isGroup As Boolean,
brush As Brush
) |
Visual C++ |
---|
public:
GridControlRowBrushEventArgs(
GridControl^ grid,
Row^ row,
bool isAlternating,
bool isGroup,
Brush^ brush
) |
F# |
---|
new :
grid : GridControl *
row : Row *
isAlternating : bool *
isGroup : bool *
brush : Brush -> GridControlRowBrushEventArgs |
Parameters
- grid
- Type: Dapfor.Wpf.Controls..::..GridControl
The grid.
- 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.
- brush
- Type: System.Windows.Media..::..Brush
The brush.
See Also