DataColumn.Table 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得資料行所屬的 DataTable。
public:
property System::Data::DataTable ^ Table { System::Data::DataTable ^ get(); };
[System.ComponentModel.Browsable(false)]
public System.Data.DataTable? Table { get; }
[System.ComponentModel.Browsable(false)]
public System.Data.DataTable Table { get; }
[System.ComponentModel.Browsable(false)]
[System.Data.DataSysDescription("DataColumnDataTableDescr")]
public System.Data.DataTable Table { get; }
[<System.ComponentModel.Browsable(false)>]
member this.Table : System.Data.DataTable
[<System.ComponentModel.Browsable(false)>]
[<System.Data.DataSysDescription("DataColumnDataTableDescr")>]
member this.Table : System.Data.DataTable
Public ReadOnly Property Table As DataTable
屬性值
DataTable 所屬的 DataColumn。
- 屬性
範例
下列範例會透過 其 Table 屬性傳回 的DataColumn父數據表。
private void GetTable(DataColumn column)
{
// Get the Table of the column.
DataTable table = column.Table;
Console.WriteLine("columns count: " + table.Columns.Count);
Console.WriteLine("rows count: " + table.Rows.Count);
}
Private Sub GetTable(ByVal column As DataColumn)
' Get the Table of the column.
Dim table As DataTable = column.Table
Console.WriteLine("columns", table.Columns.Count)
Console.WriteLine("rows", table.Rows.Count)
End Sub