Skip to content

Latest commit

 

History

History
31 lines (25 loc) · 689 Bytes

File metadata and controls

31 lines (25 loc) · 689 Bytes

GetWSCellValue

Description

Returns the displayed numeric value of a cell in the referenced worksheet.

PROCEDURE GetWSCellValue(
				worksheet     : HANDLE;
				row           : INTEGER;
				column        : INTEGER;
				VAR cellValue : REAL);
def vs.GetWSCellValue(worksheet, row, column):
    return cellValue

Parameters

Name Type Description
worksheet HANDLE Handle to worksheet.
row INTEGER Row of cell to be queried.
column INTEGER Column of cell to be queried.
cellValue REAL Numeric value contained in worksheet cell.

Version

Availability: from VectorWorks9.0

Category