次の方法で共有


BaseDataListDesigner.GetDesignTimeDataSource メソッド

定義

デザイン時にデータ ソースとして使用できるオブジェクトを生成します。

オーバーロード

GetDesignTimeDataSource(Int32, Boolean)

デザイン時にデータ ソースとして使用できるオブジェクトを生成します。

GetDesignTimeDataSource(IEnumerable, Int32, Boolean)

デザイン時にデータ ソースとして使用できるオブジェクトを生成します。

GetDesignTimeDataSource(Int32, Boolean)

デザイン時にデータ ソースとして使用できるオブジェクトを生成します。

protected:
 System::Collections::IEnumerable ^ GetDesignTimeDataSource(int minimumRows, [Runtime::InteropServices::Out] bool % dummyDataSource);
protected System.Collections.IEnumerable GetDesignTimeDataSource (int minimumRows, out bool dummyDataSource);
member this.GetDesignTimeDataSource : int * bool -> System.Collections.IEnumerable
Protected Function GetDesignTimeDataSource (minimumRows As Integer, ByRef dummyDataSource As Boolean) As IEnumerable

パラメーター

minimumRows
Int32

データ ソースが格納するサンプル データの行の最少数。

dummyDataSource
Boolean

返されたデータ ソースにダミー データが格納されている場合は true。返されたデータ ソースに実際のデータ ソースからのデータが格納されている場合は false

戻り値

デザイン時に使用するデータ ソースとして機能する IEnumerable インターフェイスを実装しているオブジェクト。

注釈

メソッドはBaseDataListDesigner.GetDesignTimeDataSource、 プロパティと DataMember プロパティによって定義されたデータ ソースからオブジェクトの構築DataTableDataSource試みます。 これが不可能な場合は、ダミー データから を DataTable 作成します。

こちらもご覧ください

適用対象

GetDesignTimeDataSource(IEnumerable, Int32, Boolean)

デザイン時にデータ ソースとして使用できるオブジェクトを生成します。

protected:
 System::Collections::IEnumerable ^ GetDesignTimeDataSource(System::Collections::IEnumerable ^ selectedDataSource, int minimumRows, [Runtime::InteropServices::Out] bool % dummyDataSource);
protected System.Collections.IEnumerable GetDesignTimeDataSource (System.Collections.IEnumerable selectedDataSource, int minimumRows, out bool dummyDataSource);
member this.GetDesignTimeDataSource : System.Collections.IEnumerable * int * bool -> System.Collections.IEnumerable
Protected Function GetDesignTimeDataSource (selectedDataSource As IEnumerable, minimumRows As Integer, ByRef dummyDataSource As Boolean) As IEnumerable

パラメーター

selectedDataSource
IEnumerable

データ形式のテンプレートとして使用される IEnumerable を実装しているオブジェクト。

minimumRows
Int32

データ ソース データが格納するサンプル データの行の最少数。

dummyDataSource
Boolean

返されたデータ ソースにダミー データが格納されている場合は true。返されたデータ ソースに実際のデータ ソースからのデータが格納されている場合は false

戻り値

デザイン時に使用するデータ ソースとして機能する IEnumerable インターフェイスを実装しているオブジェクト。

注釈

メソッドは BaseDataListDesigner.GetDesignTimeDataSource 、 パラメーターで指定されたデータ ソースからオブジェクトの構築 DataTableselectedDataSource 試みます。 これが不可能な場合は、ダミー データから を DataTable 作成します。

こちらもご覧ください

適用対象