Procedure LoadCell inserts a value into a specified cell of the active worksheet.
PROCEDURE LoadCell(
row : INTEGER;
col : INTEGER;
entry : STRING);def vs.LoadCell(ro, col, entry):
return None| Name | Type | Description |
|---|---|---|
| row | INTEGER | Worksheet row index. |
| col | INTEGER | Worksheet column index. |
| entry | STRING | Worksheet entry value. |
SprdSheet(0, 0, 3, 3);
LoadCell(1, 1, '= (14 + 2) * 3');
{ inserts a formula into a cell }
SprdSheet(0, 0, 3, 3);
LoadCell(1, 1, 'Window Schedule');
{ inserts a literal into a cell }VS functions:
- SetWSCellFormula (string, obsolete from VW 2012)
- SetWSCellFormulaN (Dynarray of Char)
LoadCell is obsolete as of VectorWorks 9.0, see new SetWSCellFormula (string), SetWSCellFormulaN (Dynarray of Char).
Availability: from All Versions