Navigation
API > API/Runtime > API/Runtime/UMG > API/Runtime/UMG/UWidgetTree
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
UWidget * FindWidget
(
const FName& Name |
Finds the widget in the tree by name. | Blueprint/WidgetTree.h | |
UWidget * FindWidget
(
TSharedRef< SWidget > InWidget |
Finds a widget in the tree using the native widget as the key. | Blueprint/WidgetTree.h | |
WidgetT * FindWidget
(
const FName& Name |
Finds the widget in the tree by name and casts the return to the desired type. | Blueprint/WidgetTree.h |
FindWidget(const FName &)
Description
Finds the widget in the tree by name.
| Name | FindWidget |
| Type | function |
| Header File | /Engine/Source/Runtime/UMG/Public/Blueprint/WidgetTree.h |
| Include Path | #include "Blueprint/WidgetTree.h" |
| Source | /Engine/Source/Runtime/UMG/Private/WidgetTree.cpp |
UWidget * FindWidget
(
const FName & Name
) const
FindWidget(TSharedRef< SWidget >)
Description
Finds a widget in the tree using the native widget as the key.
| Name | FindWidget |
| Type | function |
| Header File | /Engine/Source/Runtime/UMG/Public/Blueprint/WidgetTree.h |
| Include Path | #include "Blueprint/WidgetTree.h" |
| Source | /Engine/Source/Runtime/UMG/Private/WidgetTree.cpp |
UWidget * FindWidget
(
TSharedRef < SWidget > InWidget
) const
FindWidget(const FName &)
Description
Finds the widget in the tree by name and casts the return to the desired type.
| Name | FindWidget |
| Type | function |
| Header File | /Engine/Source/Runtime/UMG/Public/Blueprint/WidgetTree.h |
| Include Path | #include "Blueprint/WidgetTree.h" |
template<typename WidgetT>
WidgetT * FindWidget
(
const FName & Name
) const