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

WorkspaceManager.LoadWorkspace(String, Object) Method

Loads a workspace from the specified file or stream, and adds it to the WorkspaceManager.Workspaces collection under the specified name.

Namespace: DevExpress.Xpf.Core

Assembly: DevExpress.Xpf.Core.v19.1.dll

Declaration

public bool LoadWorkspace(
    string name,
    object path
)

Parameters

Name Type Description
name String

A String that specifies the name which should be assigned to the loaded workspace.

path Object

The source from which the workspace is loaded.

Returns

Type Description
Boolean

true if the workspace has been successfully loaded; otherwise, false.

Remarks

The LoadWorkspace method can load workspaces from files and streams. To load a workspace from a file, pass the String, specifying the path to the file, as the path parameter. To load a workspace from a stream, pass the Stream object instead.

Use the WorkspaceManager.SaveWorkspace method to save a workspace to a file or stream.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the LoadWorkspace(String, Object) method.

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