DataGrid.ParentRowsLabelStyle Propriété

Définition

Obtient ou définit le mode d'affichage des étiquettes des lignes parentes.

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

Valeur de propriété

Une des valeurs de l'objet DataGridParentRowsLabelStyle. La valeur par défaut est Both.

Exceptions

L'énumérateur n'était pas valide.

Exemples

L’exemple de code suivant passe en revue les valeurs possibles pour la ParentRowsLabelStyle propriété .

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

S’applique à

Voir aussi