struct CellRangeAddress in module com::sun::star::table::

(Global Index)

Syntax

struct CellRangeAddress;

Description

used to identify a cell range within a spreadsheet document.

Field Summary

Sheet index of the sheet that contains the cell range.

StartColumn index of the column where the left edge of the range is located.

StartRow index of the row where the top edge of the range is located.

EndColumn index of the column where the right edge of the range is located.

EndRow index of the row where the bottom edge of the range is located.

Field Details



Sheet

Syntax

short Sheet;

Description

index of the sheet that contains the cell range.


StartColumn

Syntax

long StartColumn;

Description

index of the column where the left edge of the range is located.


StartRow

Syntax

long StartRow;

Description

index of the row where the top edge of the range is located.


EndColumn

Syntax

long EndColumn;

Description

index of the column where the right edge of the range is located.


EndRow

Syntax

long EndRow;

Description

index of the row where the bottom edge of the range is located.

Top of Page