次の方法で共有


DataGridTableStyle.DataGrid プロパティ

描画されたテーブルの System.Windows.Forms.DataGrid コントロールを取得または設定します。

Public Overridable Property DataGrid As DataGrid
[C#]
public virtual DataGrid DataGrid {get; set;}
[C++]
public: __property virtual DataGrid* get_DataGrid();public: __property virtual void set_DataGrid(DataGrid*);
[JScript]
public function get DataGrid() : DataGrid;public function set DataGrid(DataGrid);

プロパティ値

テーブルを表示する System.Windows.Forms.DataGrid コントロール。

解説

System.Windows.Forms.DataGrid コントロールは、グリッド形式でデータを表示します。 DataGridTableStyle は描画されたグリッドを表すオブジェクトです。 System.Windows.Forms.DataGrid プロパティは、グリッドを表示しているコントロールへの参照を返します。

DataGrid プロパティは、 DataGridTableStyleSystem.Windows.Forms.DataGrid コントロールの GridTableStylesCollection に追加されたときに設定されます。このプロパティを自分で設定することは避けてください。ただし、このプロパティをオーバーライドし、 DataGrid コントロールが組み込まれたユーザー コントロールのデザイナを作成している場合は除きます。

使用例

[Visual Basic, C#, C++] DataGridTableStyle を表示する System.Windows.Forms.DataGridCurrentCell を出力する例を次に示します。

 
Private Sub GetSelectedIndex(myGridTable As DataGridTableStyle)
    ' Get the name of the DataGrid of the DataGridTable 
    ' passed as an argument. 
    Console.WriteLine(myGridTable.DataGrid.CurrentCell.ToString())
End Sub 'GetSelectedIndex

[C#] 
private void GetSelectedIndex(DataGridTableStyle myGridTable)
{
   /* Get the name of the DataGrid of the DataGridTable 
      passed as an argument. */
   Console.WriteLine(myGridTable.DataGrid.CurrentCell.ToString());
}


[C++] 
private:
void GetSelectedIndex(DataGridTableStyle* myGridTable)
{
   /* Get the name of the DataGrid of the DataGridTable 
      passed as an argument. */
   Console::WriteLine( myGridTable->DataGrid->CurrentCell.ToString() );
}

[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン 言語のフィルタ をクリックします。

必要条件

プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ

参照

DataGridTableStyle クラス | DataGridTableStyle メンバ | System.Windows.Forms 名前空間