DataGrid.ParentRowsLabelStyle プロパティ
親行ラベルの表示方法を取得または設定します。
Public Property ParentRowsLabelStyle As _
DataGridParentRowsLabelStyle
[C#]
public DataGridParentRowsLabelStyle ParentRowsLabelStyle {get; set;}
[C++]
public: __property DataGridParentRowsLabelStyle get_ParentRowsLabelStyle();public: __property void set_ParentRowsLabelStyle(DataGridParentRowsLabelStyle);
[JScript]
public function get ParentRowsLabelStyle() : DataGridParentRowsLabelStyle;public function set ParentRowsLabelStyle(DataGridParentRowsLabelStyle);
プロパティ値
DataGridParentRowsLabelStyle 値の 1 つ。既定値は Both です。
例外
例外の種類 | 条件 |
---|---|
InvalidEnumArgumentException | 列挙子が有効ではありませんでした。 |
使用例
[Visual Basic] ParentRowsLabelStyle プロパティに指定できる値の循環処理を設定する例を次に示します。
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
[C#, C++, JScript] C#、C++、および JScript のサンプルはありません。Visual Basic のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン をクリックします。
必要条件
プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ
参照
DataGrid クラス | DataGrid メンバ | System.Windows.Forms 名前空間 | AllowNavigation | ParentRowsForeColor | ParentRowsBackColor | ParentRowsVisible