FArrangedChildren::FArrangedChildren

Construct a new container for arranged children that only accepts children that match the VisibilityFilter.

Windows
MacOS
Linux

References

Module

SlateCore

Header

/Engine/Source/Runtime/SlateCore/Public/Layout/ArrangedChildren.h

Include

#include "Layout/ArrangedChildren.h"

Syntax

FArrangedChildren
(
    EVisibility InVisibilityFilter,
    bool bInAllow3DWidgets
)

Remarks

Construct a new container for arranged children that only accepts children that match the VisibilityFilter. e.g. FArrangedChildren ArrangedChildren( VIS_All ); // Children will be included regardless of visibility FArrangedChildren ArrangedChildren( EVisibility::Visible ); // Only visible children will be included FArrangedChildren ArrangedChildren( EVisibility::Collapsed | EVisibility::Hidden ); // Only hidden and collapsed children will be included.

Help shape the future of Unreal Engine documentation! Tell us how we're doing so we can serve you better.
Take our survey
Dismiss