Skip to main content
A newer version of this page is available. .

WorkspaceManager.Workspaces Property

Provides access to all currently active workspaces.

Namespace: DevExpress.Utils

Assembly: DevExpress.Utils.v19.2.dll

Declaration

[Browsable(false)]
public List<IWorkspace> Workspaces { get; }

Property Value

Type Description
List<DevExpress.Utils.IWorkspace>

A List structure that stores all currently active workspaces.

Remarks

The Workspaces property is the fundamental WorkspaceManager property that provides its functionality. All captured (WorkspaceManager.CaptureWorkspace) or loaded (WorkspaceManager.LoadWorkspace) workspaces are added to this collection. A workspace can be applied (WorkspaceManager.ApplyWorkspace) or saved to a local file (WorkspaceManager.SaveWorkspace) only if it is stored within the Workspaces collection. See the Workspace Manager topic for more info.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the Workspaces property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also