DataGridViewRow.Visible 属性

定义

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

public:
 virtual property bool Visible { bool get(); void set(bool value); };
[System.ComponentModel.Browsable(false)]
public override bool Visible { get; set; }
[<System.ComponentModel.Browsable(false)>]
member this.Visible : bool with get, set
Public Overrides Property Visible As Boolean

属性值

如果行是可见的,则为 true;否则为 false

属性

例外

行位于 DataGridView 控件中,并且是共享行。

示例

下面的代码示例演示如何使用 DataGridViewBand.Visible 属性,该属性几乎与 类的 DataGridViewRow 属性相同Visible。 此代码示例是为 DataGridViewBand 类提供的一个更大示例的一部分。

// Hide a band of cells.
void Button6_Click( Object^ /*sender*/, System::EventArgs^ /*e*/ )
{
   DataGridViewBand^ band = dataGridView->Rows[ 3 ];
   band->Visible = false;
}
// Hide a band of cells.
private void Button6_Click(object sender, System.EventArgs e)
{

    DataGridViewBand band = dataGridView.Rows[3];
    band.Visible = false;
}
' Hide a band of cells.
Private Sub Button6_Click(ByVal sender As Object, _
    ByVal e As System.EventArgs) Handles Button6.Click

    Dim band As DataGridViewBand = dataGridView.Rows(3)
    band.Visible = False
End Sub

注解

使用此属性可隐藏视图中的行,同时将行保留在 中 DataGridView。 若要完全删除行,请使用 DataGridViewRowCollection.Remove 方法。

适用于

另请参阅