DataGrid.ParentRowsLabelStyle 속성

정의

부모 행 레이블이 표시되는 방법을 가져오거나 설정합니다.

public:
 property System::Windows::Forms::DataGridParentRowsLabelStyle ParentRowsLabelStyle { System::Windows::Forms::DataGridParentRowsLabelStyle get(); void set(System::Windows::Forms::DataGridParentRowsLabelStyle value); };
public System.Windows.Forms.DataGridParentRowsLabelStyle ParentRowsLabelStyle { get; set; }
member this.ParentRowsLabelStyle : System.Windows.Forms.DataGridParentRowsLabelStyle with get, set
Public Property ParentRowsLabelStyle As DataGridParentRowsLabelStyle

속성 값

DataGridParentRowsLabelStyle

DataGridParentRowsLabelStyle 값 중 하나입니다. 기본값은 Both입니다.

예외

열거자가 잘못된 경우

예제

다음 코드 예제에서는 속성에 대 한 가능한 값을 순환 합니다 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

적용 대상

추가 정보