Skip to main content

IXlSheet.SkipColumns(Int32) Method

Specifies the number of successive columns to be skipped in the worksheet before starting to generate a new column.

Namespace: DevExpress.Export.Xl

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

NuGet Package: DevExpress.Printing.Core

Declaration

void SkipColumns(
    int count
)

Parameters

Name Type Description
count Int32

A positive integer value that specifies the number of columns to be skipped.

Remarks

Note that you can also use the IXlSheet.CreateColumn method overload with the columnIndex parameter to specify where the created column should be located in a worksheet. For more information on how to generate and modify worksheet columns, refer to the Rows and Columns section of examples.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the SkipColumns(Int32) method.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also