SThemeColorBlocksBar::GetChildren

All widgets must provide a way to access their children in a layout-agnostic way.

Choose your operating system:

Windows

macOS

Linux

Override Hierarchy

SWidget::GetChildren()

SPanel::GetChildren()

SThemeColorBlocksBar::GetChildren()

References

Module

AppFramework

Header

/Engine/Source/Runtime/AppFramework/Public/Widgets/Colors/SColorThemes.h

Include

#include "Widgets/Colors/SColorThemes.h"

Source

/Engine/Source/Runtime/AppFramework/Private/Widgets/Colors/SColorThemes.cpp

Syntax

virtual FChildren * GetChildren()

Remarks

All widgets must provide a way to access their children in a layout-agnostic way. Panels store their children in Slots, which creates a dilemma. Most panels can store their children in a TPanelChildren, where the Slot class provides layout information about the child it stores. In that case GetChildren should simply return the TPanelChildren.