DataGridViewRow::Visible Property
.NET Framework (current version)
Gets or sets a value indicating whether the row is visible.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
public: [BrowsableAttribute(false)] property bool Visible { virtual bool get() override; virtual void set(bool value) override; }
| Exception | Condition |
|---|---|
| InvalidOperationException | The row is in a DataGridView control and is a shared row. |
Use this property to hide a row from view while keeping the row in the DataGridView. To completely remove a row, use the DataGridViewRowCollection::Remove method.
The following code example demonstrates how to use the DataGridViewBand::Visible property, which is nearly identical to the Visible property of the DataGridViewRow class. This code example is part of a larger example provided for the DataGridViewBand class.
.NET Framework
Available since 2.0
Available since 2.0
Show: