Function CellValue returns the numeric value of a specified cell in the active worksheet. If the specified cell is not a numeric type, then this function returns 0.
FUNCTION CellValue(
row : INTEGER;
column : INTEGER): REAL;def vs.CellValue(row, column):
return REAL| Name | Type | Description |
|---|---|---|
| row | INTEGER | Worksheet row index. |
| column | INTEGER | Worksheet column index. |
Returns the floating point representation of the current worksheet's cell specified by "row" and "column" numbers. If the specified cell is not a numeric type, then this function returns 0. [sd 8/13/98]
[GetWSCellValue | GetWSCellValue](GetWSCellValue%20| GetWSCellValue.md), [GetWSSubrowCellValue | GetWSSubrowCellValue](GetWSSubrowCellValue%20| GetWSSubrowCellValue.md)
CellValue is obsolete as of VectorWorks 9.0, see [[VS:GetWSCellValue | GetWSCellValue]], [[VS:GetWSSubrowCellValue | GetWSSubrowCellValue]]
Availability: from All Versions
- Worksheets