GridView.CreateChildControls(IEnumerable, Boolean) メソッド

定義

指定されたデータ ソースを使用して、GridView コントロールの表示に使用するコントロール階層を作成します。

protected:
 override int CreateChildControls(System::Collections::IEnumerable ^ dataSource, bool dataBinding);
protected override int CreateChildControls (System.Collections.IEnumerable dataSource, bool dataBinding);
override this.CreateChildControls : System.Collections.IEnumerable * bool -> int
Protected Overrides Function CreateChildControls (dataSource As IEnumerable, dataBinding As Boolean) As Integer

パラメーター

dataSource
IEnumerable

IEnumerable コントロールのデータ ソースが格納された GridView

dataBinding
Boolean

子コントロールがデータにバインドされていることを示す場合は true。それ以外の場合は false

戻り値

作成される行数。

例外

dataSource が null DataSourceView を返します。

- または -

dataSourceICollection インターフェイスを実装していないため、TotalRowCount を返すことができません。

- または -

AllowPagingtrue ですが、dataSourceICollection インターフェイスを実装していないため、データ ソース ページングを実行できません。

- または -

dataSourceICollection インターフェイスを実装せず、dataBindingfalse に設定されています。

注釈

メソッドは CreateChildControls 、コントロールのコントロール階層を作成するために使用されます GridView

Note

このメソッドは、主にコントロール開発者がコントロールを拡張するために使用します GridView

適用対象

こちらもご覧ください