Skip to main content
All docs
V23.2
Row

ColumnCollection.Insert(String, Int32, ColumnFormatMode) Method

Inserts multiple columns and specifies how to format these columns.

Namespace: DevExpress.Spreadsheet

Assembly: DevExpress.Spreadsheet.v23.2.Core.dll

NuGet Package: DevExpress.Spreadsheet.Core

Declaration

void Insert(
    string columnHeading,
    int count,
    ColumnFormatMode formatMode
)

Parameters

Name Type Description
columnHeading String

The heading of the first column to insert. Specify headings in the A1 reference style.

count Int32

The number of columns to insert.

formatMode ColumnFormatMode

An enumeration member that specifies how to format inserted columns.

Remarks

The number of columns in a worksheet does not change—16,384. When you add new columns, other columns in the worksheet are shifted to the right, and an equivalent number of columns at the end of the worksheet is removed.

The following example inserts two columns (“B” and “C”) and applies the same format as column “A” to these columns:

// Insert two columns with the same formatting as the column "A".
worksheet.Columns.Insert("B", 2, ColumnFormatMode.FormatAsPrevious);

Insert columns and specify format options

See Also