DataGrid.CaptionText プロパティ

定義

グリッドのウィンドウ キャプションのテキストを取得または設定します。

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

プロパティ値

String

グリッドのウィンドウ キャプションとして表示される文字列。 既定値は、空の文字列 ("") です。

次のコード例では、.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

適用対象

こちらもご覧ください