https://bugs.documentfoundation.org/show_bug.cgi?id=160896
Bug ID: 160896
Summary: Cell Column & Row Base
Product: LibreOffice
Version: unspecified
Hardware: All
OS: All
Status: UNCONFIRMED
Severity: normal
Priority: medium
Component: BASIC
Assignee: [email protected]
Reporter: [email protected]
Description:
Cell and range properties and methods should be one based (1) not zero based
(0).
When counting things in that exist in the physical world the first item is 1,
not 0. Whether it be marbles or rows and columns.
For example
.getCellByPosition(1,1) ' Should return A1 (first row and column) not B2
(second row and column)
.getCellRangeByName("A1").CellAddress.Row ' Should return 1 (first row),
not 0
.getCellRangeByName("A1").CellAddress.Column ' Should return 1 (first
column), not 0
Steps to Reproduce:
1.Self evident in description
2.
3.
Actual Results:
Self evident in description
Expected Results:
Self evident in description
Reproducible: Always
User Profile Reset: No
Additional Info:
Cell and range properties and methods should be one based (1) not zero based
(0).
When counting things in that exist in the physical world the first item is 1,
not 0. Whether it be marbles or rows and columns.
For example
.getCellByPosition(1,1) ' Should return A1 (first row and column) not B2
(second row and column)
.getCellRangeByName("A1").CellAddress.Row ' Should return 1 (first row),
not 0
.getCellRangeByName("A1").CellAddress.Column ' Should return 1 (first
column), not 0
--
You are receiving this mail because:
You are the assignee for the bug.