Skip to main content
A newer version of this page is available. .

ColumnCreatedEventArgs(GridColumn, IModelColumn) Constructor

Creates and initializes a new instance of the ColumnCreatedEventArgs class.

Namespace: DevExpress.ExpressApp.Win.Editors

Assembly: DevExpress.ExpressApp.Win.v18.2.dll

Declaration

public ColumnCreatedEventArgs(
    GridColumn column,
    IModelColumn columnInfo
)

Parameters

Name Type Description
column GridColumn

A GridColumn object that represents the column which has been created. This argument is used to initialize the ColumnCreatedEventArgs.Column property.

columnInfo IModelColumn

An IModelColumn object that represents the Application Model‘s node which contains information on the created column. This argument is used to initialize the ColumnCreatedEventArgs.ColumnInfo property.

Remarks

Since the ColumnCreatedEventArgs supplies arguments to the WinColumnsListEditor.ColumnCreated event that is raised automatically by the GridListEditor, you do not need to manually instantiate the ColumnCreatedEventArgs.

See Also