FPSpreadsheet: Update description of INDEX function.

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@9358 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
wp_xxyyzz 2024-05-30 13:42:25 +00:00
parent 2e64878199
commit 999687e0a1

View File

@ -2279,9 +2279,12 @@ begin
Result.ResultType := rtHyperlink; Result.ResultType := rtHyperlink;
end; end;
{ INDEX(range, row_no, col_no) { INDEX(range, row_no [, col_no])
Searches for a value in an array based on its coordinates. Searches for a value in an array based on its coordinates.
In contrast to Excel, row_no and col_no cannot be omitted. } When the last parameter, col_no, is omitted, the input range must be a
1-d vector, either a row or a column.
The case of row_no or col_no equal to zero (returning the entire row or column)
is not supported as FPSpreadsheet cannot return a cell range, so far. }
procedure fpsINDEX(var Result: TsExpressionResult; const Args: TsExprParameterArray); procedure fpsINDEX(var Result: TsExpressionResult; const Args: TsExprParameterArray);
var var
rng: TsCellRange3d; rng: TsCellRange3d;