You've already forked lazarus-ccr
fpspreadsheet:
- test for bug 26447: fpspreadsheet columns >26 wrong with ooxml (patch) as fixed in r3273 - fix typo in documentation rfRow=>rfRelRow - cosmetic changes git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@3276 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@ -599,9 +599,9 @@ const
|
||||
@param AColIndex Zero-based column index
|
||||
@param AFlags A set containing an entry for column and row if these
|
||||
addresses are relative.
|
||||
@return Excel-type of cell address containing $ characters for absolute
|
||||
@return Excel type of cell address containing $ characters for absolute
|
||||
address parts.
|
||||
@example ARowIndex = 0, AColIndex = 0, AFlags = [rfRow] --> $A1
|
||||
@example ARowIndex = 0, AColIndex = 0, AFlags = [rfRelRow] --> $A1
|
||||
}
|
||||
function GetCellString(ARow, ACol: Cardinal; AFlags: TsRelFlags): String;
|
||||
begin
|
||||
@ -621,10 +621,10 @@ end;
|
||||
@param ACol2 Zero-based index of the last column in the range
|
||||
@param AFlags A set containing an entry for first and last column and
|
||||
row if their addresses are relative.
|
||||
@return Excel-type of cell address range containing '$' characters for absolute
|
||||
@return Excel type of cell address range containing '$' characters for absolute
|
||||
address parts and a ':' to separate the first and last cells of the
|
||||
range
|
||||
@example ARow1 = 0, ACol1 = 0, ARow = 2, ACol = 1, AFlags = [rfRow, rfRow2]
|
||||
@example ARow1 = 0, ACol1 = 0, ARow = 2, ACol = 1, AFlags = [rfRelRow, rfRelRow2]
|
||||
--> $A1:$B3
|
||||
}
|
||||
function GetCellRangeString(ARow1, ACol1, ARow2, ACol2: Cardinal; AFlags: TsRelFlags): String;
|
||||
|
Reference in New Issue
Block a user