unreal.SelectionMode

class unreal.SelectionMode

Bases: unreal.EnumBase

ESelection Mode

C++ Source:

  • Module: Slate

  • File: ITypedTableView.h

MULTI

Multiple items can be selected at the same time.

Type

3

NONE

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

Type

0

SINGLE

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

Type

1

SINGLE_TOGGLE

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