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.
PROCEDURE BeginFloor(thicknessDistance : REAL);def vs.BeginFloor(thicknessDistance):
return None| Name | Type | Description |
|---|---|---|
| thicknessDistance | REAL | Floor thickness. |
BeginFloor(6");
Rect(1,1,5,5);
EndGroup;vs.BeginFloor(6)
vs.Rect(1,1,5,5)
vs.EndGroup()Availability: from MiniCAD4.0