Is there any way to get property's value for Nesting Struct?

Why tho

If your FStructChildB cannot exist on its own and is always within FStructParent, you can do something like this

int GetTestIntA()
{
    FStructParent* Parent = (FStructParent*)( (uint8*)this - offsetof(FStructParent, StructChildB) );
    return Parent->StructChildA.TestIntA;
}

pls don’t do this