Macro(bpy_struct)¶
base class — bpy_struct
- class bpy.types.Macro(bpy_struct)¶
Storage of a macro operator being executed, or registered after execution
- bl_description¶
- Type
string, default “”, (never None)
- bl_idname¶
- Type
string, default “”, (never None)
- bl_label¶
- Type
string, default “”, (never None)
- bl_options¶
Options for this operator type
REGISTERRegister, Display in the info window and support the redo toolbar panel.UNDOUndo, Push an undo event (needed for operator redo).UNDO_GROUPEDGrouped Undo, Push a single undo event for repeated instances of this operator.BLOCKINGBlocking, Block anything else from using the cursor.MACROMacro, Use to check if an operator is a macro.GRAB_CURSORGrab Pointer, Use so the operator grabs the mouse focus, enables wrapping when continuous grab is enabled.GRAB_CURSOR_XGrab Pointer X, Grab, only warping the X axis.GRAB_CURSOR_YGrab Pointer Y, Grab, only warping the Y axis.PRESETPreset, Display a preset button with the operators settings.INTERNALInternal, Removes the operator from search results.
- Type
enum set in {‘REGISTER’, ‘UNDO’, ‘UNDO_GROUPED’, ‘BLOCKING’, ‘MACRO’, ‘GRAB_CURSOR’, ‘GRAB_CURSOR_X’, ‘GRAB_CURSOR_Y’, ‘PRESET’, ‘INTERNAL’}, default {‘REGISTER’}
- bl_translation_context¶
- Type
string, default “Operator”, (never None)
- bl_undo_group¶
- Type
string, default “”, (never None)
- name¶
- Type
string, default “”, (readonly, never None)
- properties¶
- Type
OperatorProperties, (readonly, never None)
- report(type, message)¶
report
- Parameters
type (enum set in {'DEBUG', 'INFO', 'OPERATOR', 'PROPERTY', 'WARNING', 'ERROR', 'ERROR_INVALID_INPUT', 'ERROR_INVALID_CONTEXT', 'ERROR_OUT_OF_MEMORY'}) – Type
message (string, (never None)) – Report Message
- classmethod poll(context)¶
Test if the operator can be called or not
- Return type
boolean
- draw(context)¶
Draw function for the operator
- classmethod bl_rna_get_subclass(id, default=None)¶
- Parameters
id (string) – The RNA type identifier.
- Returns
The RNA type or default when not found.
- Return type
bpy.types.Structsubclass
- classmethod bl_rna_get_subclass_py(id, default=None)¶
- Parameters
id (string) – The RNA type identifier.
- Returns
The class or default when not found.
- Return type
type
Inherited Properties
Inherited Functions
References