DataGrid.CaptionText プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
グリッドのウィンドウ キャプションのテキストを取得または設定します。
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
プロパティ値
グリッドのウィンドウ キャプションとして表示される文字列。 既定値は、空の文字列 ("") です。
例
次のコード例では、.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