Skip to content

Latest commit

 

History

History
57 lines (47 loc) · 855 Bytes

File metadata and controls

57 lines (47 loc) · 855 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

PopAttrs;
def SetDownObject(objectHand):
	vs.TextureObjs(objectHand)
	vs.PopAttrs(objectHand)

See Also

VS Functions: PushAttrs

Version

Availability: from MiniCAD4.0

Category