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
TOGGLEToggle – Toggle selection for all elements.SELECTSelect – Select all elements.DESELECTDeselect – Deselect all elements.INVERTInvert – 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
SETSet – Set a new selection.ADDExtend – Extend existing selection.SUBSubtract – 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