fpspreadsheet: Add reading and writing support for conditional formats in Excel XML files (not yet complete).

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@7549 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
wp_xxyyzz
2020-07-17 19:50:40 +00:00
parent 6aa2860020
commit 2793744bf7
7 changed files with 578 additions and 55 deletions

View File

@@ -652,6 +652,9 @@ function ParseCellString(const AStr: String; out ACellRow, ACellCol: Cardinal;
end;
end;
if (ACellCol = 0) or (ACellRow = 0) then
exit;
dec(ACellCol);
dec(ACellRow);
if not isAbs then Include(AFlags, rfRelRow);