Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 990 Bytes

File metadata and controls

35 lines (26 loc) · 990 Bytes

CellString

Description

Function CellString returns the string of a specified cell in the active worksheet

FUNCTION CellString(
				row    : INTEGER;
				column : INTEGER): STRING;
def vs.CellString(row, column):
    return STRING

Parameters

Name Type Description
row INTEGER Worksheet row index.
column INTEGER Worksheet column index.

Remarks

Returns the string representation of the current worksheet's cell specified by 'row' and 'column' numbers. [sd 8/13/98]

See Also

IsWSCellString, IsWSCellStringN, IsWSSubrowCellString

Version

CellString is obsolete as of VectorWorks 9.0, see IsWSCellString (returns a string), IsWSCellStringN (returns a Dynarray of Char), IsWSSubrowCellString

Availability: from All Versions

Category