| BeginColumn | Objects - Architectural |
Declaration:
PROCEDURE BeginColumn
( columnDistance:REAL ) ; Description:
Procedure BeginColumn creates a column object in a Vectorworks document using 2D object creation procedure calls to define the "template" for the column object.
After specifying object procedure calls to define the column, you should call EndGroup to complete the column definition and create the actual object.
Parameters:
columnDistance Height of column. Example:
BeginColumn(12'); Oval(2',2',6',6'); EndGroup;
| BeginFloor | Objects - Architectural |
Declaration:
PROCEDURE BeginFloor
( thicknessDistance:REAL ) ; Description:
Procedure BeginFloor creates a new floor object in a Vectorworks document. BeginFloor uses 2D object creation procedure calls to define the "template" for the object.
After specifying object procedure calls to define the floor object, you should call EndGroup to complete the column definition and create the actual object.
Parameters:
thicknessDistance Floor thickness. Example:
BeginFloor(6"); Rect(1,1,5,5); EndGroup;