Getting widget Row/Column in Uniform grid panel c++

Hello as the title suggests I am trying to get a specific widgets row and column within the parent uniform grid panel but I have been unsuccessful in doing so. I have also tried getting the child of the uniform grid panel and accessing the row and column however this also seems to not work. I would appreciate some help on this. Thanks.

You should able to do with child which has it own custom class form UPanelSlot:

Use function insted of varable, if this still not work there possible that it can’t place widget in non-existing slot in grid and you need to make dummy slots

You need to set Row and Column as follows (You must read Slot property after you added to UniformPanel)

MyUniformGridPanel->AddChild(MyWidget);

if (UUniformGridSlot* slot = Cast<UUniformGridSlot>(MyWidget->Slot))
{
	slot->SetColumn(1);
	slot->SetRow(3);
}

Regards