DataGrid.ParentRowsVisible 属性

定义

获取或设置一个值,该值指示表的父行是否可见。

public:
 property bool ParentRowsVisible { bool get(); void set(bool value); };
public bool ParentRowsVisible { get; set; }
member this.ParentRowsVisible : bool with get, set
Public Property ParentRowsVisible As Boolean

属性值

Boolean

如果父行可见,则为 true;否则为 false。 默认值为 true

示例

下面的代码示例切换 ParentRowsVisible 属性。

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

适用于