Methods
- Func Create( iName, iFrom, iTo) As
- Create a FunctionalAction.
- Sub Delete( iAction)
- Delete a FunctionalAction.
- Func Elem( iIndex) As
-
Returns an action using its index or its name from the actions
collection.
- Parameters:
-
- iIndex
- The index or the name of the action to retrieve from the collection of actions. As a numerics, this index is the rank of the action in the collection. The index of the first action in the collection is 1, and the index of the last action is Count. As a string, it is the name you assigned to the action using the property. dd>
- Returns:
- The retrieved action
- Example:
-
This example retrieves in Act1 the fifth action
in the collection and in Act2 the action
named Moves.
Dim Act1 As FunctionalAction Set Act1 = Desc.Action(5) Dim Act2 As FunctionalAction Set Act2 = Desc.Action("Moves")dd>