Last updated
Was this helpful?
Was this helpful?
// Initialize
for(int i = 0; i < ExampleComponentInstance.Children.Count; i++)
{
var child = (GraphicalUiElement)ExampleComponentInstance.Children[i];
child.Width = 100;
}// Initialize
for(int i = 0; i < ExampleComponentInstance.Children.Count; i++)
{
var child = (ColoredRectangleRuntime)ExampleComponentInstance.Children[i];
// change any property that is specific to ColoredRectangleRuntime
}