Reputation: 1
I work using Revit API and have developed an add-in with several features. My goal is that Revit must not be opened in order to use the add-in. I've seen code about how to open a cloud based file using guids, but I haven´t seen anything about how to get those guids.
Your help will be useful.
This is the only code I have
var cloudModelPath = ModelPathUtils.ConvertCloudGUIDsToCloudPath(inputParams.Region, inputParams.ProjectGuid, inputParams.ModelGuid);
Document doc = rvtApp.OpenDocumentFile(cloudModelPath, new OpenOptions());
Upvotes: 0
Views: 28