How to iter SVerticalBox’s all slots,and get the pointer of Swidget of these slots?
FChildren* Children = Box->GetChildren();
for (int i = 0; i < Children->Num(); i++)
{
TSharedRef<SWidget> Child = Children->GetChildAt(i);
}
How to iter SVerticalBox’s all slots,and get the pointer of Swidget of these slots?
FChildren* Children = Box->GetChildren();
for (int i = 0; i < Children->Num(); i++)
{
TSharedRef<SWidget> Child = Children->GetChildAt(i);
}