I tested this function on the not tabulated table (3х3) in formulas toolbar buttons, field (translation, validation) and form action.The document was in a mode as editing and readings, focus was both within the limits of the table and outside of.
Returned value in all cases for any keyword was 1 as number, instead of a text.
The test formula:
row := @GetFocusTable([CellRow]);
column := @GetFocusTable([CellColumn]);
name := @GetFocusTable([TableName]);
@Prompt([Ok]; “About table”; @If(@IsText( row );“row - is text”;@IsNumber( row ); “row is number”; “undefined”));
@Prompt([Ok]; “About table”; @Text( row ));
@Prompt([Ok]; “About table”; @If(@IsText( column );“column - is text”;@IsNumber( column ); “column is number”; “undefined”));
@Prompt([Ok]; “About table”; @Text( column ));
@Prompt([Ok]; “About table”; @If(@IsText( name );“name - is text”;@IsNumber( name ); “name is number”; “undefined”));
@Prompt([Ok]; “About table”; @Text( name ))