Uilist Operators

bpy.ops.uilist.entry_add(*, list_path='', active_index_path='')

Add an entry to the list after the current active item

Parameters:
  • list_path (str) – list_path, (optional, never None)

  • active_index_path (str) – active_index_path, (optional, never None)

Returns:

Result of the operator call.

Return type:

set[Literal[Operator Return Items]]

File:

startup/bl_ui/generic_ui_list.py:208

bpy.ops.uilist.entry_move(*, list_path='', active_index_path='', direction='UP')

Move an entry in the list up or down

Parameters:
  • list_path (str) – list_path, (optional, never None)

  • active_index_path (str) – active_index_path, (optional, never None)

  • direction (Literal['UP', 'DOWN']) –

    Direction, (optional)

    • UP UP – UP.

    • DOWN DOWN – DOWN.

Returns:

Result of the operator call.

Return type:

set[Literal[Operator Return Items]]

File:

startup/bl_ui/generic_ui_list.py:236

bpy.ops.uilist.entry_remove(*, list_path='', active_index_path='')

Remove the selected entry from the list

Parameters:
  • list_path (str) – list_path, (optional, never None)

  • active_index_path (str) – active_index_path, (optional, never None)

Returns:

Result of the operator call.

Return type:

set[Literal[Operator Return Items]]

File:

startup/bl_ui/generic_ui_list.py:191