Gets or sets RowDockStyle for this row.

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

Syntax

C#
public RowDockStyle Dock { get; set; }
Visual Basic
Public Property Dock As RowDockStyle
	Get
	Set
Visual C++
public:
property RowDockStyle Dock {
	RowDockStyle get ();
	void set (RowDockStyle value);
}
F#
member Dock : RowDockStyle with get, set

Property Value

Type: RowDockStyle
RowDockStyle object.

Remarks

Docked rows are simple data rows that can be docked on top or bottom of any hierarchical level. Such rows don’t depend on data sorting direction and constantly stay on their fixed positions. This feature is useful when you need to display important information, e.g. an average value or a total, or when you need to create a row that acts as a filter (drop-down boxes containing value ranges).

Programmer may specify multiple docked rows. If your data grid already has docked rows, the next docked row is placed after the previously docked row and before the first non-docked row. Docked rows can be filtered or grouped as any other data rows.

 Copy imageCopy
Row row = ...
row.Dock = RowDockStyle.Top;

See Also