aspnet-devexpress-dot-web-3034c8cb.md
Serves as a base for classes that represent data columns.
Namespace : DevExpress.Web
Assembly : DevExpress.Web.v25.2.dll
NuGet Package : DevExpress.Web
public class GridViewDataColumn :
GridViewColumn,
IWebColumnInfo,
IDataSourceViewSchemaAccessor,
IFilterColumn,
IFilterablePropertyInfo,
IWebGridDataColumn,
IWebGridDataColumnBase,
IWebGridColumn,
IWebGridExportColumn,
IWebGridDataColumnAdapterOwner
Public Class GridViewDataColumn
Inherits GridViewColumn
Implements IWebColumnInfo,
IDataSourceViewSchemaAccessor,
IFilterColumn,
IFilterablePropertyInfo,
IWebGridDataColumn,
IWebGridDataColumnBase,
IWebGridColumn,
IWebGridExportColumn,
IWebGridDataColumnAdapterOwner
The following members return GridViewDataColumn objects:
Show 16 links
The ASPxGridView control is designed to display and edit tabular information. Data sources present this information using data fields and records. In the ASPxGridView, data fields are represented as data columns and a record is displayed as a data row.
The ASPxGridView stores its columns within the ASPxGridView.Columns collection. A column can be accessed by its caption or the name of the data source field to which it is bound.
The ASPxGridView supports bound and unbound columns. Bound columns obtain their data from the control’s data source. Their GridViewDataColumn.FieldName property refers to a valid field in the data source. Unbound columns are not bound to any field in the data source. These columns must be populated manually via the ASPxGridView.CustomUnboundColumnData event.
Settings provided by the GridViewDataColumn class allow you to control how column data is displayed and edited, whether the column takes part in grouping and at which level, sort order, etc.
To learn more, see Data Columns.
Show 41 items
Object StateManager CollectionItem WebColumnBase GridViewColumn GridViewDataColumn GridViewEditDataColumn
GridViewDataDropDownEditColumn
BootstrapGridViewSpinEditColumn
BootstrapGridViewTimeEditColumn
BootstrapGridViewBinaryImageColumn
BootstrapGridViewButtonEditColumn
BootstrapGridViewColorEditColumn
BootstrapGridViewComboBoxColumn
BootstrapGridViewDropDownEditColumn
BootstrapGridViewEditDataColumn
BootstrapGridViewHyperLinkColumn
BootstrapGridViewProgressBarColumn
See Also