This documentation is archived and is not being maintained.
Binding::DataSource Property
.NET Framework (current version)
Gets the data source for this binding.
Namespace:
System.Windows.FormsAssembly:
System.Windows.Forms (in System.Windows.Forms.dll)
public:
property Object^ DataSource {
Object^ get();
}
Possible data sources include:
The following code example uses the DataSource property to return a DataSet.
private:
void GetDataSource()
{
DataSet^ ds = dynamic_cast<DataSet^>(text1->DataBindings[nullptr]->DataSource);
Console::WriteLine( ds->Tables[ 0 ]->TableName );
}
.NET Framework
Available since 1.1
Return to top