Indexes   

MechanismCommands (Collection)

A collection of all MechanismCommand entities currently managed by the application.

Method Index

Add
Creates a new MechanismCommand and adds it to the MechanismCommands collection.
Item
Returns a MechanismCommand using its index or its name from the Commands collection.
Remove
Remove a MechanismCommand from the MechanismCommands collection.

Methods


o Func Add() As
Creates a new MechanismCommand and adds it to the MechanismCommands collection.
Returns:
The created MechanismCommand
Example:
This example creates a new MechanismCommand in the TheCommands collection.
    Dim NewCommand As MechanismCommand
    Set NewCommand = TheCommands.Add()
    
o Func Item( iIndex) As
Returns a MechanismCommand using its index or its name from the Commands collection.
Parameters:
iIndex
The index or the name of the MechanismCommand to retrieve from the collection of Commands. As a numerics, this index is the rank of the MechanismCommand in the collection. The index of the first MechanismCommand in the collection is 1, and the index of the last MechanismCommand is Count. As a string, it is the name you assigned to the MechanismCommand using the
AnyObject.Name property.
Returns:
The retrieved MechanismCommand
Example:
This example returns in ThisCommand the third MechanismCommand in the collection, and in ThatCommand the MechanismCommand named MyCommand.
 Dim ThisCommand As MechanismCommand
 Set ThisCommand = TheCommands.Item(3)
 Dim ThatCommand As MechanismCommand
 Set ThatCommand = CATIA.MechanismCommands.Item("MyCommand")
 
o Sub Remove( iIndex)
Remove a MechanismCommand from the MechanismCommands collection.
Parameters:
iIndex
The index or the name of the MechanismCommand to retrieve from the collection of MechanismCommands. As a numerics, this index is the rank of the MechanismCommand in the collection. The index of the first MechanismCommand in the collection is 1, and the index of the last MechanismCommand is Count. As a string, it is the name you assigned to the MechanismCommand.
Returns:
Nothing
Example:
The following example removes the tenth MechanismCommand and the MechanismCommand named CommandTwo from the TheCommands collection.
    TheCommands.Remove(10)
    TheCommands.Remove("CommandTwo")
    

Copyright © 2006, Dassault Systèmes. All rights reserved.