Skip to content

Latest commit

 

History

History
48 lines (39 loc) · 732 Bytes

File metadata and controls

48 lines (39 loc) · 732 Bytes

PopAttrs

Description

Restores the attribute, tool, and constraint settings saved by an earlier call to PushAttrs.

PROCEDURE PopAttrs;
def vs.PopAttrs():
    return None

Remarks

Calling this procedure more times than PushAttrs has been called during the execution of the script will crash VectorWorks.

Examples

VectorScript

PROCEDURE Example;
BEGIN
PushAttrs;
PenFore(215);
PenBack(5);
PenPat(25);
PenSize(42);
PenPat(25);
SetConstrain('q');
CallTool(-201);
PopAttrs;
END;
RUN(Example);

Python

See Also

VS Functions: PushAttrs

Version

Availability: from MiniCAD4.0

Category