Binding.DataSource 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 data source for this binding.
public:
property System::Object ^ DataSource { System::Object ^ get(); };
public object DataSource { get; }
public object? DataSource { get; }
member this.DataSource : obj
Public ReadOnly Property DataSource As Object
Property Value
An Object that represents the data source.
Examples
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 );
}
private void GetDataSource()
{
DataSet ds = (DataSet) text1.DataBindings[0].DataSource;
Console.WriteLine(ds.Tables[0].TableName);
}
Private Sub GetDataSource
Dim ds As DataSet = CType(text1.DataBindings(0).DataSource, DataSet)
Console.WriteLine(ds.Tables(0).TableName)
End Sub
Remarks
Possible data sources include:
Applies to
Vertu í samstarfi við okkur á GitHub
Heimildina fyrir þetta efni er að finna á GitHub, þar sem þú getur líka búið til og farið yfir vandamál og sameinað beiðnir. Frekari upplýsingar er að finna í framlagshandbók okkar.