DataGrid::ParentRowsLabelStyle Property
.NET Framework (current version)
Gets or sets the way parent row labels are displayed.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
public: property DataGridParentRowsLabelStyle ParentRowsLabelStyle { DataGridParentRowsLabelStyle get(); void set(DataGridParentRowsLabelStyle value); }
Property Value
Type: System.Windows.Forms::DataGridParentRowsLabelStyleOne of the DataGridParentRowsLabelStyle values. The default is Both.
| Exception | Condition |
|---|---|
| InvalidEnumArgumentException | The enumerator was not valid. |
The following code example cycles through the possible values for the ParentRowsLabelStyle property.
Private Sub ChangeParentRowLabels(ByVal myGrid As DataGrid) Static currentLabelStyle As Integer If currentLabelStyle = 4 Then currentLabelStyle = 0 Select Case currentLabelStyle Case 0 myGrid.ParentRowsLabelStyle = DataGridParentRowsLabelStyle.None Case 1 myGrid.ParentRowsLabelStyle = DataGridParentRowsLabelStyle.TableName Case 2 myGrid.ParentRowsLabelStyle = DataGridParentRowsLabelStyle.ColumnName Case 3 myGrid.ParentRowsLabelStyle = DataGridParentRowsLabelStyle.Both Case Else myGrid.ParentRowsLabelStyle = DataGridParentRowsLabelStyle.Both End Select End Sub
.NET Framework
Available since 1.1
Available since 1.1
Show: