DesignTimeData.GetSelectedDataSource 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得設計主機中依名稱選取的數據源,該數據源是由指定元件的月臺屬性表示。
多載
GetSelectedDataSource(IComponent, String) |
取得設計主機中依名稱選取的數據源,由指定元件的月臺屬性表示,並由指定的數據源名稱識別。 |
GetSelectedDataSource(IComponent, String, String) |
取得設計主機中依名稱選取的數據源,該數據源是由指定元件的月臺屬性表示,並以指定的數據源名稱和成員名稱識別。 |
GetSelectedDataSource(IComponent, String)
取得設計主機中依名稱選取的數據源,由指定元件的月臺屬性表示,並由指定的數據源名稱識別。
public:
static System::Object ^ GetSelectedDataSource(System::ComponentModel::IComponent ^ component, System::String ^ dataSource);
public static object GetSelectedDataSource (System.ComponentModel.IComponent component, string dataSource);
static member GetSelectedDataSource : System.ComponentModel.IComponent * string -> obj
Public Shared Function GetSelectedDataSource (component As IComponent, dataSource As String) As Object
參數
- component
- IComponent
包含數據源的 IComponent 物件。
- dataSource
- String
要擷取的數據源名稱。
傳回
實作 IListSource 或 IEnumerable 表示所選數據源的物件,如果無法存取數據源或設計工具主機,則為 null
。
另請參閱
適用於
GetSelectedDataSource(IComponent, String, String)
取得設計主機中依名稱選取的數據源,該數據源是由指定元件的月臺屬性表示,並以指定的數據源名稱和成員名稱識別。
public:
static System::Collections::IEnumerable ^ GetSelectedDataSource(System::ComponentModel::IComponent ^ component, System::String ^ dataSource, System::String ^ dataMember);
public static System.Collections.IEnumerable GetSelectedDataSource (System.ComponentModel.IComponent component, string dataSource, string dataMember);
static member GetSelectedDataSource : System.ComponentModel.IComponent * string * string -> System.Collections.IEnumerable
Public Shared Function GetSelectedDataSource (component As IComponent, dataSource As String, dataMember As String) As IEnumerable
參數
- component
- IComponent
實作包含數據源屬性之 IComponent 的物件。
- dataSource
- String
要擷取的數據源。
- dataMember
- String
要擷取的數據成員。
傳回
實作包含數據成員 IEnumerable 的物件,如果無法存取數據源、成員或元件的月臺,則為 null
。