GridView.CreateChildControls(IEnumerable, Boolean) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
지정된 데이터 소스를 사용하여 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를 반환하는 경우
또는
dataSource
가 ICollection 인터페이스를 구현하지 않고 TotalRowCount를 반환할 수 없는 경우
또는
AllowPaging이 true
이고 dataSource
가 ICollection 인터페이스를 구현하지 않고 데이터 소스 페이징을 수행할 수 없는 경우
또는
dataSource
가 ICollection 인터페이스를 구현하지 않고 dataBinding
이 false
로 설정된 경우
설명
이 CreateChildControls 메서드는 컨트롤의 GridView 컨트롤 계층 구조를 만드는 데 사용됩니다.
참고
이 메서드는 주로 컨트롤 개발자가 확장 된 GridView 제어 합니다.