Skip to main content
A newer version of this page is available. .

XlCellPosition(Int32, Int32) Constructor

Initializes a new instance of the XlCellPosition class with the specified column and row indexes.

Namespace: DevExpress.Export.Xl

Assembly: DevExpress.Printing.v19.1.Core.dll

Declaration

public XlCellPosition(
    int column,
    int row
)

Parameters

Name Type Description
column Int32

An integer that is the zero-based column index.

row Int32

An integer that is the zero-based row index.

Remarks

If the column index is -1 and the row index is positive, the position denotes the entire row. If the row index is -1 and the column index is positive, the position denotes the entire column. If any index is a negative integer other than -1, it is substituted with -1.

See Also