Info Operators

bpy.ops.info.report_copy()

Copy selected reports to clipboard

Returns:

Result of the operator call.

Return type:

set[Literal[Operator Return Items]]

bpy.ops.info.report_delete()

Delete selected reports

Returns:

Result of the operator call.

Return type:

set[Literal[Operator Return Items]]

bpy.ops.info.report_replay()

Replay selected reports

Returns:

Result of the operator call.

Return type:

set[Literal[Operator Return Items]]

bpy.ops.info.reports_display_update()

Update the display of reports in Blender UI (internal use)

Returns:

Result of the operator call.

Return type:

set[Literal[Operator Return Items]]

bpy.ops.info.select_all(*, action='SELECT')

Change selection of all visible reports

Parameters:

action (Literal['TOGGLE', 'SELECT', 'DESELECT', 'INVERT']) –

Action, Selection action to execute (optional)

  • TOGGLE Toggle – Toggle selection for all elements.

  • SELECT Select – Select all elements.

  • DESELECT Deselect – Deselect all elements.

  • INVERT Invert – Invert selection of all elements.

Returns:

Result of the operator call.

Return type:

set[Literal[Operator Return Items]]

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) – X Min, (in [-inf, inf], optional)

  • xmax (int) – X Max, (in [-inf, inf], optional)

  • ymin (int) – Y Min, (in [-inf, inf], optional)

  • ymax (int) – Y Max, (in [-inf, inf], optional)

  • wait_for_input (bool) – Wait for Input, (optional)

  • mode (Literal['SET', 'ADD', 'SUB']) –

    Mode, (optional)

    • SET Set – Set a new selection.

    • ADD Extend – Extend existing selection.

    • SUB Subtract – Subtract existing selection.

Returns:

Result of the operator call.

Return type:

set[Literal[Operator Return Items]]

bpy.ops.info.select_pick(*, report_index=0, extend=False)

Select reports by index

Parameters:
  • report_index (int) – Report, Index of the report (in [0, inf], optional)

  • extend (bool) – Extend, Extend report selection (optional)

Returns:

Result of the operator call.

Return type:

set[Literal[Operator Return Items]]