Gets or sets a value, indicating whether this Row is docked.

Namespace: Dapfor.Net.Ui
Assembly: Dapfor.Net (in Dapfor.Net.dll) Version: 2.10.3.24917 (2.10.3.24917)

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

Remarks

Docked rows are simple data rows that can be docked on top or bottom at 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 will be placed after the previously docked row and the first non-docked row. Docked rows can also be filtered or grouped as any other data rows.

 Copy imageCopy
//Dock row to the bottom
grid.Rows[8].Dock = RowDockStyle.Bottom;

//Dock row to the top
grid.Rows[9].Dock = RowDockStyle.Top;

//Undock row
grid.Rows[0].Dock = RowDockStyle.None;

See Also