OperatorOptions(bpy_struct)

base class — bpy_struct

class bpy.types.OperatorOptions(bpy_struct)

Runtime options

is_grab_cursor

True when the cursor is grabbed

Type:boolean, default False, (readonly)
is_invoke

True when invoked (even if only the execute callbacks available)

Type:boolean, default False, (readonly)
is_repeat

True when run from the ‘Adjust Last Operation’ panel

Type:boolean, default False, (readonly)
is_repeat_last

True when run from the operator ‘Repeat Last’

Type:boolean, default False, (readonly)
use_cursor_region

Enable to use the region under the cursor for modal execution

Type:boolean, default False
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.Struct subclass
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