Skip to content

Latest commit

 

History

History
38 lines (31 loc) · 689 Bytes

File metadata and controls

38 lines (31 loc) · 689 Bytes

DrwSize

Description

Procedure DrwSize sets the drawing area of the document.

PROCEDURE DrwSize(
				rows    : INTEGER;
				columns : INTEGER);
def vs.DrwSize(rows, columns):
    return None

Parameters

Name Type Description
rows INTEGER Number of sheet rows comprising total document area.
columns INTEGER Number of sheet columns comprising total document area.

Examples

VectorScript

DrwSize(2,3);
{sets the drawing size to 2 x 3 sheets}

Python

vs.DrwSize(2,3)

Version

Availability: from All Versions

Category