5#include "CoreMinimal.h"
6#include "Components/VerticalBox.h"
7#include "AdvancedVerticalBox.generated.h"
15 UFUNCTION(BlueprintCallable, Category =
"Panel")
16 class UVerticalBoxSlot* InsertChildAtIndex(int32 Index, UWidget* Content);
19 UFUNCTION(BlueprintCallable, Category =
"Panel")
20 void SortChildWidgets(
const TArray<UWidget*>& NewOrder);
22 UFUNCTION(BlueprintCallable, Category =
"Panel")
23 void GetAllChildWidgets(TArray<UWidget*>& ChildWidgets)
const;
Definition: AdvancedVerticalBox.h:11