如何使用Revit 2018打开和激活BIM 360文档?

时间:2019-07-10 10:03:10

标签: c# revit-api

我想打开保存在BIM360上的OpenAndActivateDocument,但是由于“文档不存在”,我遇到了一个错误。

相同的方法可以完美地与Revit 2019一起使用。

if (RevitObject.rvtUiDoc.Document.IsWorkshared)
{
       ModelPath MyCentralFile = doc.GetWorksharingCentralModelPath();

       if (MyCentralFile != null)
       {
            OpenOptions openoptions = new OpenOptions();

            RevitObject.rvtUiApp.OpenAndActivateDocument(MyCentralFile, 
            openoptions, false);


            RevitObject.rvtUiDoc.ActiveView = activeView;

            if (otherDoc != null)
                otherDoc.Close(false);
       }
}

1 个答案:

答案 0 :(得分:0)

基本上,只有2018年以上的Revit API才支持此功能(仅适用于2019年以上)。

不幸的是,真的。