Skip to content

Latest commit

 

History

History
54 lines (42 loc) · 1.03 KB

File metadata and controls

54 lines (42 loc) · 1.03 KB

GetCAlign

Description

Function GetCAlign returns the alignment value of a cell in the referenced worksheet.

Table - Worksheet Cell Alignment

Alignment Constant
General 1
Left 2
Right 3
Center 4
FUNCTION GetCAlign(
				h   : HANDLE;
				row : INTEGER;
				col : INTEGER): INTEGER;
def vs.GetCAlign(h, row, col):
    return INTEGER

Parameters

Name Type Description
h HANDLE Handle to worksheet.
row INTEGER Worksheet row index.
col INTEGER Worksheet column index.

Examples

VectorScript

AlignmentMode := GetCAlign(WSheetHd, 4, 5);

Python

AlignmentMode = vs.GetCAlign(WSheetHd, 4, 5)

See Also

GetWSCellAlignment

Version

GetCAlign is obsolete as of VectorWorks 9.0, see new GetWSCellAlignment

Availability: from All Versions

Category