Skip to content

Latest commit

 

History

History
43 lines (34 loc) · 964 Bytes

File metadata and controls

43 lines (34 loc) · 964 Bytes

GetWSRowHLockState

Description

Returns the lock state of a row in the referenced worksheet

Note: If a row height is locked, the row will not automatically resize to fit the contents of the cells when text is entered.

PROCEDURE GetWSRowHLockState(
				worksheet     : HANDLE;
				row           : INTEGER;
				VAR lockState : BOOLEAN);
def vs.GetWSRowHLockState(worksheet, row):
    return lockState

Parameters

Name Type Description
worksheet HANDLE Handle to worksheet
row INTEGER Worksheet row index
lockState BOOLEAN Row Height lock state ( returns TRUE is row height is locked ; FALSE otherwise)

Examples

==== VectorScript ====

{Gets the lock state of the fifth row in the specified worksheet}
GetWSRowHLockState(sheet,5,lockstate);

==== Python ====

lockstate = vs.GetWSRowHLockState(sheet,5)

Version

Availability: from VectorWorks12.0

Category

  • Worksheets