Skip to main content

LayoutViewColumnCollection.AddRange(LayoutViewColumn[]) Method

Adds an array of columns to the end of the collection.

Namespace: DevExpress.XtraGrid.Columns

Assembly: DevExpress.XtraGrid.v23.2.dll

NuGet Packages: DevExpress.Win.Grid, DevExpress.Win.Navigation

Declaration

public virtual void AddRange(
    LayoutViewColumn[] columns
)

Parameters

Name Type Description
columns LayoutViewColumn[]

An array of LayoutViewColumn objects.

Remarks

Columns are added to the collection in the order specified by their positions within the array.

Newly created columns are initially hidden. To make them visible, use the LayoutViewColumn.Visible property or the Move method of a corresponding LayoutViewField object.

See Also