Skip to main content

IXlSheet.SkipRows(Int32) Method

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

Namespace: DevExpress.Export.Xl

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

NuGet Package: DevExpress.Printing.Core

Declaration

void SkipRows(
    int count
)

Parameters

Name Type Description
count Int32

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

Remarks

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

The following code snippets (auto-collected from DevExpress Examples) contain references to the SkipRows(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