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