Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+
  • The page you are viewing does not exist in the .NET Standard 2.0+ platform documentation. This link will take you to the parent topic of the current section.

ColumnCreatedEventArgs(GridColumn, IModelColumn) Constructor

Creates and initializes a new instance of the ColumnCreatedEventArgs class.

Namespace: DevExpress.ExpressApp.Win.Editors

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

NuGet Package: DevExpress.ExpressApp.Win

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