macro_name property

macro_name property

Gets and sets the name of macro.

Example


# Sets the name of macro.
shape.macro_name = "DoWork()"

Definition:

@property
def macro_name(self):
    ...
@macro_name.setter
def macro_name(self, value):
    ...

See Also