DataGridViewBand.Selected Property
Gets or sets a value indicating whether the band is in a selected user interface (UI) state.
Namespace: System.Windows.Forms
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
| Exception | Condition |
|---|---|
| InvalidOperationException | The specified value when setting this property is true, but the band has not been added to a DataGridView control. -or- This property is being set on a shared DataGridViewRow. |
This property can be set only if a DataGridView with the SelectionMode property enabled is associated with the band.
The following code example illustrates the use of this property.
void dataGridView1_ColumnHeaderMouseClick( object sender, DataGridViewCellMouseEventArgs e) { this.dataGridView1.SelectionMode = DataGridViewSelectionMode.ColumnHeaderSelect; this.dataGridView1.Columns[e.ColumnIndex].HeaderCell .SortGlyphDirection = SortOrder.None; this.dataGridView1.Columns[e.ColumnIndex].Selected = true; } void dataGridView1_RowHeaderMouseClick( object sender, DataGridViewCellMouseEventArgs e) { this.dataGridView1.SelectionMode = DataGridViewSelectionMode.RowHeaderSelect; this.dataGridView1.Rows[e.RowIndex].Selected = true; }
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.