Interface: IRange
Defined in: packages/api/tmp/univer-pro/submodules/univer/packages/core/src/sheets/typedef.ts:468
Range data structure
One of the range types,
e.g., { startRow:0 , startColumn:0, endRow:1, endColumn:1, }
means “A1:B2”
Extends
Extended by
Properties
Property | Type | Description | Inherited from | Defined in |
---|---|---|---|---|
endAbsoluteRefType? | AbsoluteRefType | - | - | packages/api/tmp/univer-pro/submodules/univer/packages/core/src/sheets/typedef.ts:473 |
endColumn | number | The end column (exclusive) of the range endColumn | IColumnRange .endColumn | packages/api/tmp/univer-pro/submodules/univer/packages/core/src/sheets/typedef.ts:450 |
endRow | number | The end row (exclusive) of the range endRow | IRowRange .endRow | packages/api/tmp/univer-pro/submodules/univer/packages/core/src/sheets/typedef.ts:436 |
rangeType? | RANGE_TYPE | - | - | packages/api/tmp/univer-pro/submodules/univer/packages/core/src/sheets/typedef.ts:469 |
sheetId? | string | Id of the Worksheet the range belongs to. When this field is not defined, it should be considered as the range in the currently activated worksheet. | IColumnRange .sheetId | packages/api/tmp/univer-pro/submodules/univer/packages/core/src/sheets/typedef.ts:422 |
startAbsoluteRefType? | AbsoluteRefType | - | - | packages/api/tmp/univer-pro/submodules/univer/packages/core/src/sheets/typedef.ts:471 |
startColumn | number | The start column (inclusive) of the range startColumn | IColumnRange .startColumn | packages/api/tmp/univer-pro/submodules/univer/packages/core/src/sheets/typedef.ts:444 |
startRow | number | The start row (inclusive) of the range startRow | IRowRange .startRow | packages/api/tmp/univer-pro/submodules/univer/packages/core/src/sheets/typedef.ts:430 |
unitId? | string | Id of the Workbook the range belongs to. When this field is not defined, it should be considered as the range in the currently activated worksheet. | IColumnRange .unitId | packages/api/tmp/univer-pro/submodules/univer/packages/core/src/sheets/typedef.ts:416 |