Autodesk.Revit.DB.Events.RevitAPIPostDocEventArgs
是一个事件参数类,用于包含提交文档后的 Revit API 事件所需的信息。
下面的示例演示了如何使用 RevitAPIPostDocEventArgs
类在提交后的事件中获取文档和路径信息。
public void OnDocumentChanged(object sender, Autodesk.Revit.DB.Events.DocumentChangedEventArgs e)
{
if (e is Autodesk.Revit.DB.Events.RevitAPIPostDocEventArgs postSaveArgs)
{
// Get the document and posted path
Autodesk.Revit.DB.Document doc = postSaveArgs.Document;
string postedPath = postSaveArgs.PostedSavedPath;
// Do something with the document and path
Console.WriteLine("Document \"{0}\" has been saved to {1}.", doc.Title, postedPath);
}
}