Info Operators
- bpy.ops.info.report_copy()
Copy selected reports to clipboard
- bpy.ops.info.report_delete()
Delete selected reports
- bpy.ops.info.report_replay()
Replay selected reports
- bpy.ops.info.reports_display_update()
Update the display of reports in Blender UI (internal use)
- bpy.ops.info.select_all(*, action='SELECT')
Change selection of all visible reports
- Parameters
action (enum in [
'TOGGLE'
,'SELECT'
,'DESELECT'
,'INVERT'
], (optional)) –Action, Selection action to execute
TOGGLE
Toggle – Toggle selection for all elements.SELECT
Select – Select all elements.DESELECT
Deselect – Deselect all elements.INVERT
Invert – Invert selection of all elements.
- bpy.ops.info.select_box(*, xmin=0, xmax=0, ymin=0, ymax=0, wait_for_input=True, mode='SET')
Toggle box selection
- Parameters
xmin (int in [-inf, inf], (optional)) – X Min
xmax (int in [-inf, inf], (optional)) – X Max
ymin (int in [-inf, inf], (optional)) – Y Min
ymax (int in [-inf, inf], (optional)) – Y Max
wait_for_input (boolean, (optional)) – Wait for Input
mode (enum in [
'SET'
,'ADD'
,'SUB'
], (optional)) –Mode
SET
Set – Set a new selection.ADD
Extend – Extend existing selection.SUB
Subtract – Subtract existing selection.
- bpy.ops.info.select_pick(*, report_index=0, extend=False)
Select reports by index
- Parameters
report_index (int in [0, inf], (optional)) – Report, Index of the report
extend (boolean, (optional)) – Extend, Extend report selection