Message 1 of 10
How to use API to open Revit Server file and reload working set button available?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
As the title says,I open Revit Server File by api,however the reload workset button isn't available.
private void OpenDetached(UIApplication app, ModelPath modelPath)
{
OpenOptions opt = new OpenOptions();
opt.DetachFromCentralOption = DetachFromCentralOption.DoNotDetach;
app.OpenAndActivateDocument(modelPath, opt, false);
}