I have a panel with around 15 buttons assigned to it as parent. How can I get the button control to access its properties like visible etc.
Through the direct member of button I can do that. But I want like using iterator. I tired like
For nPanelViewCount = SchematicPanel.NumberOfViews -1 To 0 Step -1
SchematicPanel.GetView(nPanelViewCount).Visible = False
Next
But Button controls are not returns as Views of panel.
How Can I achieve this?
Thanks,
Through the direct member of button I can do that. But I want like using iterator. I tired like
For nPanelViewCount = SchematicPanel.NumberOfViews -1 To 0 Step -1
SchematicPanel.GetView(nPanelViewCount).Visible = False
Next
But Button controls are not returns as Views of panel.
How Can I achieve this?
Thanks,