Navigation
API > API/Runtime > API/Runtime/SlateCore > API/Runtime/SlateCore/FArrangedChildren
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void AddWidget
(
const FArrangedWidget& InWidgetGeometry |
Add an arranged widget (i.e. widget and its resulting geometry) to the list of Arranged children based on the the visibility filter and the arranged widget's visibility | Layout/ArrangedChildren.h | |
void AddWidget
(
EVisibility VisibilityOverride, |
Add an arranged widget (i.e. widget and its resulting geometry) to the list of Arranged children. | Layout/ArrangedChildren.h |
AddWidget(const FArrangedWidget &)
Description
Add an arranged widget (i.e. widget and its resulting geometry) to the list of Arranged children based on the the visibility filter and the arranged widget's visibility
| Name | AddWidget |
| Type | function |
| Header File | /Engine/Source/Runtime/SlateCore/Public/Layout/ArrangedChildren.h |
| Include Path | #include "Layout/ArrangedChildren.h" |
| Source | /Engine/Source/Runtime/SlateCore/Private/Layout/ArrangedChildren.cpp |
void AddWidget
(
const FArrangedWidget & InWidgetGeometry
)
AddWidget(EVisibility, const FArrangedWidget &)
Description
Add an arranged widget (i.e. widget and its resulting geometry) to the list of Arranged children.
| Name | AddWidget |
| Type | function |
| Header File | /Engine/Source/Runtime/SlateCore/Public/Layout/ArrangedChildren.h |
| Include Path | #include "Layout/ArrangedChildren.h" |
void AddWidget
(
EVisibility VisibilityOverride,
const FArrangedWidget & InWidgetGeometry
)
Parameters
| Name | Remarks |
|---|---|
| VisibilityOverride | The arrange function may override the visibility of the widget for the purposes of layout or performance (i.e. prevent redundant call to Widget->GetVisibility()) |
| InWidgetGeometry | The arranged widget (i.e. widget and its geometry) |