Revit 2025 API
Workset |
Sets a group of user-created worksets to open.
Namespace: Autodesk.Revit.DB
Assembly: RevitAPI (in RevitAPI.dll) Version: 25.0.0.0 (25.0.0.0)
Syntax
public void Open( IList<WorksetId> worksetsToOpen )
Public Sub Open ( worksetsToOpen As IList(Of WorksetId) )
public: void Open( IList<WorksetId^>^ worksetsToOpen )
member Open : worksetsToOpen : IList<WorksetId> -> unit
Parameters
| Exception | Condition |
|---|---|
| ArgumentNullException | A non-optional argument was null |
Calling this method on a configuration created with options other than WorksetConfigurationOption.OpenAllWorksets will set these
worksets to be explicitly opened. If all worksets are set to open, the configuration will be unchanged. Worksets other than the inputs are unaffected.
See Also