Workspace Object

Derived from: Base Object
Defined in namespace "adsk::core" and the header file is <Core/UserInterface/Workspace.h>

Description

A Workspace provides access to a set of panels, which contain commands that are relevant for that particular workspace. The user can switch from one workspace to another in a product (e.g. switch from Model to Sculpt in Fusion).

Methods

Name Description
activate Activate the workspace (assuming it is valid to do so - a SIM workspace can't be activated if Fusion is the active product).
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().
deleteMe Deletes this workspace. Only a workspace added by the API can be deleted, (IsNative is false).

Properties

Name Description
id Gets the unique Id of the workspace that can be used programmatically to find a specific workspace. It is not affected by the current language.
isActive Gets if the workspace is currently active - i.e. displayed
isNative Gets if this workspace is native to Fusion or was created via the API.
isValid Indicates if this object is still valid, i.e. hasn't been deleted or some other action done to invalidate the reference.
name Gets the visible name of the workspace as seen in the user interface. This is the localized name.
objectType This property is supported by all objects in the API and returns a string that contains the full name (namespace::objecttype) describing the type of the object.

It's often useful to use this in combination with the classType method to see if an object is a certain type. For example: if obj.objectType == adsk.core.Point3D.classType():
productType Returns the name of the product this workspace is associated with.
resourceFolder Gets or sets the resource folder.
toolbarPanels Gets the collection containing the panels associated with this workspace. It's through this collection that you can add new toolbar panels.
toolbarTabs Gets the collection containing the tabs associated with this workspace.
toolClipFilename Gets or sets the full filename of the image file (PNG) used for the tool clip. the tool clip is the image shown when the user hovers the mouse over the workspace name in the workspace drop-down.
tooltip Gets or sets the tooltip text displayed for the workspace. This is the first line of text shown when the user hovers over the workspace name in the Fusion toolbar drop-down. This is typically the name of the workspace. This is different from the name in the that the name is a short name shown in the drop-down. The tooltip is only shown when the user hovers over the name and box appears providing more information about the workspace. For example, the name of the model workspace is "Model" and the tooltip is "Model Workspace".
tooltipDescription Gets or sets the tooltip description displayed for the workspace. The tooltip description is a longer description of the workspace and is only displayed when the user hovers over the workspace name in the Fusion toolbar drop-down. The pop-up dialog that appears contains the tooltip, the tooltip description, and the tool clip which is a picture.

Accessed From

UserInterface.activeWorkspace, WorkspaceEventArgs.workspace, WorkspaceList.item, WorkspaceList.itemById, Workspaces.add, Workspaces.item, Workspaces.itemById

Samples

Name Description
Write user interface to a file API Sample Writes out the full structure of the Fusion user interface. This information is useful when editing the user-interface, as discussed in the usre manual topic User-Interface Customization with Fusion's API

Version

Introduced in version August 2014