Restores the attribute, tool, and constraint settings saved by an earlier call to PushAttrs.
PROCEDURE PopAttrs;def vs.PopAttrs():
return NoneCalling this procedure more times than PushAttrs has been called during the execution of the script will crash VectorWorks.
PROCEDURE Example;
BEGIN
PushAttrs;
PenFore(215);
PenBack(5);
PenPat(25);
PenSize(42);
PenPat(25);
SetConstrain('q');
CallTool(-201);
PopAttrs;
END;
RUN(Example);VS Functions: PushAttrs
Availability: from MiniCAD4.0