DataTable.DataSet Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the DataSet to which this table belongs.
public:
property System::Data::DataSet ^ DataSet { System::Data::DataSet ^ get(); };
[System.ComponentModel.Browsable(false)]
public System.Data.DataSet? DataSet { get; }
[System.ComponentModel.Browsable(false)]
public System.Data.DataSet DataSet { get; }
[System.ComponentModel.Browsable(false)]
[System.Data.DataSysDescription("DataTableDataSetDescr")]
public System.Data.DataSet DataSet { get; }
[<System.ComponentModel.Browsable(false)>]
member this.DataSet : System.Data.DataSet
[<System.ComponentModel.Browsable(false)>]
[<System.Data.DataSysDescription("DataTableDataSetDescr")>]
member this.DataSet : System.Data.DataSet
Public ReadOnly Property DataSet As DataSet
Property Value
The DataSet to which this table belongs.
- Attributes
Examples
The following example returns the parent DataSet of a given table through the DataSet property.
private DataSet GetDataSetFromTable()
{
DataTable table;
// Check to see if the DataGrid's DataSource
// is a DataTable.
if( dataGrid1.DataSource is DataTable)
{
table = (DataTable) dataGrid1.DataSource;
// Return the DataTable's DataSet
return table.DataSet;
}
else
{
return null;
}
}
Private Function GetDataSetFromTable() As DataSet
Dim table As DataTable
' Check to see if the DataGrid's DataSource property
' is a DataTable.
If TypeOf dataGrid1.DataSource Is DataTable Then
table = CType(DataGrid1.DataSource, DataTable)
GetDataSetFromTable = table.DataSet
Else
return Nothing
End If
End Function
Remarks
If a control is data bound to a DataTable, and the table belongs to a DataSet, you can get to the DataSet through this property.
Applies to
See also
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET