DataGrid::ParentRowsVisible Property

 

Gets or sets a value indicating whether the parent rows of a table are visible.

Namespace:   System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)

public:
property bool ParentRowsVisible {
	bool get();
	void set(bool value);
}

Property Value

Type: System::Boolean

true if the parent rows are visible; otherwise, false. The default is true.

The following code example toggles the ParentRowsVisible property.

Private Sub ToggleParentRowsVisible(ByRef myGrid As DataGrid)
    myGrid.ParentRowsVisible = myGrid.ParentRowsVisible Xor True
 End Sub

.NET Framework
Available since 1.1
Return to top
Show: