DataGrid.CaptionText Propriété

Définition

Obtient ou définit le texte du titre de fenêtre de la grille.

public:
 property System::String ^ CaptionText { System::String ^ get(); void set(System::String ^ value); };
public string CaptionText { get; set; }
member this.CaptionText : string with get, set
Public Property CaptionText As String

Valeur de propriété

String

Chaîne à afficher comme titre de fenêtre de la grille. La valeur par défaut est une chaîne vide ("").

Exemples

L’exemple de code suivant définit la légende d’un System.Windows.Forms.DataGrid.

if ( dataGrid1->CaptionText == "" )
{
   dataGrid1->CaptionText = "Microsoft DataGrid";
}
if(dataGrid1.CaptionText == "")
dataGrid1.CaptionText = "Microsoft DataGrid";
If DataGrid1.CaptionText = "" Then
    DataGrid1.CaptionText = "Microsoft DataGrid"
End If

S’applique à

Voir aussi