DataGrid.CreateColumnSet(PagedDataSource, Boolean) Method
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.
Creates the set of columns to be used to build up the control hierarchy. When AutoGenerateColumns is true, the columns are created to match the data source and are appended to the set of columns defined in the Columns collection.
protected:
virtual System::Collections::ArrayList ^ CreateColumnSet(System::Web::UI::WebControls::PagedDataSource ^ dataSource, bool useDataSource);
protected virtual System.Collections.ArrayList CreateColumnSet (System.Web.UI.WebControls.PagedDataSource dataSource, bool useDataSource);
abstract member CreateColumnSet : System.Web.UI.WebControls.PagedDataSource * bool -> System.Collections.ArrayList
override this.CreateColumnSet : System.Web.UI.WebControls.PagedDataSource * bool -> System.Collections.ArrayList
Protected Overridable Function CreateColumnSet (dataSource As PagedDataSource, useDataSource As Boolean) As ArrayList
Parameters
- dataSource
- PagedDataSource
The data source being used to create the control hierarchy.
- useDataSource
- Boolean
Whether to use the data source to generate columns automatically or to use saved state.
Returns
An ArrayList containing the effective set of columns in the right order.