StackController
Methods
AddView(view As ViewController, index As Integer = -1)
Init(animated As Boolean)
RemoveView(index As Integer = -1)
Properties
Expanded As Boolean
UseAnimation As Boolean
Views() As ViewController
Last updated
Class (inherits from ContainerControl)
Adds a View (dynamically at the Runtime) to the StackView.
Parameters
view
Pointer to the View which should be added to the StackView.
index
Position to add the View into the StackView.
Set Views animation.
Parameters
animated
A Boolean specifiying the animation state of the StackController.
Removes a View from the StackView.
Parameters
index
Removes the View at position index from the StackView.
Set or return the state of the StackView.
Animate all Views while collapsing/expanding.
Collection of ViewControllers.
Sample Code
MyStackController1 Open-Event:
Last updated
Views.Add(MyFontView1)
Views.Add(MyAlignmentView1)
Views.Add(MyMarginView1)