Navigation
API > API/Plugins > API/Plugins/ModelingEditorUI > API/Plugins/ModelingEditorUI/ModelingWidgets
References
| Module | ModelingEditorUI |
| Header | /Engine/Plugins/Experimental/MeshModelingToolsetExp/Source/ModelingEditorUI/Public/ModelingWidgets/ModelingCustomizationUtil.h |
| Include | #include "ModelingWidgets/ModelingCustomizationUtil.h" |
| Source | /Engine/Plugins/Experimental/MeshModelingToolsetExp/Source/ModelingEditorUI/Private/ModelingWidgets/ModelingCustomizationUtil.cpp |
namespace UE
{
namespace ModelingUI
{
void UE::ModelingUI::ProcessChildWidgetsByType
(
const TSharedRef < SWidget > & RootWidget,
const FString & WidgetType,
TFunction < bool< SWidget > &)> ProcessFunc
)
}
}
Remarks
Run ProcessFunc over each child widget of WidgetType under RootWidget.
Parameters
| Name | Description |
|---|---|
| RootWidget | the root widget to search from. |
| WidgetType | the type of widgets to consider |
| ProcessFunc | the function to run on each instance of the widget. If return value is false, stop further processing. |