Being able to grab an array of child components would enable us to do things like this:
for(Component* child : getChildComponents())
{
child->setName(“Happy days!”);
}
What say ye?
Being able to grab an array of child components would enable us to do things like this:
for(Component* child : getChildComponents())
{
child->setName(“Happy days!”);
}
What say ye?
Ha, great minds and all that.