DataGrid.CaptionText Propriedade

Definição

Obtém ou define o texto da legenda da janela da grelha.

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

Valor de Propriedade

Um fio a ser exibido como legenda da janela da grelha. O padrão é uma cadeia vazia ("").

Exemplos

O seguinte exemplo de código define a legenda de um 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

Aplica-se a

Ver também