add |
Inserts a Tool at the end of the ToolLibrary. |
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(). |
createEmpty |
Creates an empty ToolLibrary. |
createFromJson |
Creates a ToolLibrary by given JSON-string. Raises an error if the given JSON is invalid. |
createQuery |
Creates a new ToolQuery that is used to query the library for tools matching the query. |
item |
Get Tool by index in ToolLibrary. |
operationsByTool |
Returns all operations that use the given tool. The tool must exist in the document tool library. Raises an error if the tool is not in the document. |
remove |
Remove Tool by index from ToolLibrary. |
toJson |
Generate and return JSON string that contains all tools of that list. |
toolsBySetupOrFolder |
Returns all tools used in a given setup or folder. Given setup or folder must belong to the document of the DocumentToolLibrary. Raises an error if given operation is not in the document. |
update |
Update the given tool in the document tool library. The update applies all changes to the tool in the document tool library and therefore on all operations that use the tool. Will error if the tool does not exist in the document tool library. |