Skip to content

Latest commit

 

History

History
51 lines (40 loc) · 1.12 KB

File metadata and controls

51 lines (40 loc) · 1.12 KB

NewSprdSheet

Description

Procedure NewSprdSheet creates a new worksheet in a VectorWorks document.

PROCEDURE NewSprdSheet(
				name                : STRING;
				locationX,locationY : REAL;
				rows                : INTEGER;
				columns             : INTEGER;
				showOnDrawing       : BOOLEAN;
				openAfterCreate     : BOOLEAN);
def vs.NewSprdSheet(name, location, rows, columns, showOnDrawing, openAfterCreate):
    return None

Parameters

Name Type Description
name STRING Name of new worksheet.
location REAL Insertion point of worksheet.
rows INTEGER Number of rows.
columns INTEGER Number of columns.
showOnDrawing BOOLEAN Display worksheet in document.
openAfterCreate BOOLEAN Open worksheet after creation.

Examples

==== VectorScript ====

NewSprdSheet('Window Schedule', 12, 24, 5, 8, TRUE, FALSE);

==== Python ====

See Also

[CreateWS | CreateWS](CreateWS%20| CreateWS.md)

Version

NewSprdSheet is obsolete as of VectorWorks 9.0, see new [[VS:CreateWS| CreateWS]]

Availability: from VectorWorks 8.0

Category

  • Worksheets