GridView.CreateColumns(PagedDataSource, Boolean) Method

Definition

Creates the set of column fields used to build the control hierarchy.

C#
protected virtual System.Collections.ICollection CreateColumns(System.Web.UI.WebControls.PagedDataSource dataSource, bool useDataSource);

Parameters

dataSource
PagedDataSource

A PagedDataSource that represents the data source.

useDataSource
Boolean

true to use the data source specified by the dataSource parameter; otherwise, false.

Returns

A ICollection that contains the fields used to build the control hierarchy.

Remarks

When the AutoGenerateColumns property is set to true, a bound column field is automatically created for each field in the data source. Each bound column field is then displayed as a row in the GridView control in the order that the fields appear in the data source. The CreateColumns method is used to create the automatically generated column fields.

Note

This method is used primarily by control developers to extend the GridView control.

Applies to

Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also