unreal.UMGWidgetClassEntry

class unreal.UMGWidgetClassEntry(widget_class: Class = Ellipsis, is_panel: bool = False, category: Text = '', description: Text = '')

Bases: StructBase

Widget class entry for ListWidgetClasses and GetWidgetClassInfo.

C++ Source:

  • Plugin: UMGToolSet

  • Module: UMGToolSet

  • File: UMGToolSet.h

Editor Properties: (see get_editor_property/set_editor_property)

  • category (Text): [Read-Write] Category for this widget class.

  • description (Text): [Read-Write] Description for this widget class that may contain more information on how the Widget is used and when to use it.

  • is_panel (bool): [Read-Write] Whether this class is a panel (can have children).

  • widget_class (type(Class)): [Read-Write] The widget class.

property category: Text

[Read-Only] Category for this widget class.

Type:

(Text)

property description: Text

[Read-Only] Description for this widget class that may contain more information on how the Widget is used and when to use it.

Type:

(Text)

property is_panel: bool

[Read-Only] Whether this class is a panel (can have children).

Type:

(bool)

property widget_class: Class

[Read-Only] The widget class.

Type:

(type(Class))