add |
Adds a parameter to the list. This does not create a new parameter, it adds an existing parameter to the list. Note that duplicates can exist in the list. |
classType |
Static function that all classes support that returns the type of the class as a string. The returned string matches the string returned by the objectType property. For example if you have a reference to an object and you want to check if it's a SketchLine you can use myObject.objectType == fusion.SketchLine.classType(). |
contains |
Indicates whether or not ParameterList collection contains a specified parameter |
create |
Creates a parameter list that the client can use for various purposes. Use ParameterList.Add to add parameters to the list after creating it. |
find |
Finds the specified parameter in the list. The search can be started at a specified index rather than from the beginning of the list. If not found, -1 is returned. |
item |
Function that returns the specified parameter using an index into the collection. |
itemByName |
Returns the specified parameter using the name of the parameter as it is displayed in the parameters dialog |
removeByIndex |
Method that removes a parameter from the list using the index of the item in the list Will fail if the list is read only. |
removeByItem |
Method that removes a parameter from the list by specifying the parameter (item) to remove |