unreal.SelectionMode

class unreal.SelectionMode

Bases: EnumBase

ESelection Mode

C++ Source:

  • Module: Slate

  • File: ITypedTableView.h

MULTI: SelectionMode

Multiple items can be selected at the same time.

Type:

3

NONE: SelectionMode

Nothing can be selected and there is no hover cue for selection. You can still handle mouse button events though.

Type:

0

SINGLE: SelectionMode

A single item can be selected at once, or no item may be selected.

Type:

1

SINGLE_TOGGLE: SelectionMode

A single item can be selected at once, or no item may be selected. You can click the item to toggle selection on and off.

Type:

2