Skip to content

Latest commit

 

History

History
52 lines (41 loc) · 1.11 KB

File metadata and controls

52 lines (41 loc) · 1.11 KB

LoadCell

Description

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

Parameters

Name Type Description
row INTEGER Worksheet row index.
col INTEGER Worksheet column index.
entry STRING Worksheet entry value.

Examples

VectorScript

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 }

Python

See Also

VS functions:

Version

LoadCell is obsolete as of VectorWorks 9.0, see new SetWSCellFormula (string), SetWSCellFormulaN (Dynarray of Char).

Availability: from All Versions

Category