我正在寻找一种使用Revit API访问链接的Autocad文件的方法。我已经安装了SnoopDB,这是一个巨大的帮助。
我发现this这也是向前迈出的又一步,但是我无法获得文件的点或线。
我进行了一些探索,发现我能够访问文件名,然后获取cadlink的哈希码,但是在那之后,idk如何获取内部的Goemetry。
感谢您的帮助。
这是我到目前为止所拥有的:
UIApplication uiapp = commandData.Application;
UIDocument uidoc = uiapp.ActiveUIDocument;
Application app = uiapp.Application;
Document doc = uidoc.Document;
Selection sel = uidoc.Selection;
using (Transaction tx = new Transaction(doc))
{
try
{
tx.Start("Tracing Cad");
Reference refer = sel.PickObject(ObjectType.Element, "Select a CAD Link");
Element elem = doc.GetElement(refer);
GeometryElement geoElem = elem.get_Geometry(new Options());
Debug.WriteLine("elem.Category.Name: " + elem.Category.Name); // can grab title of CAD
foreach (GeometryObject geoObj in geoElem)
{
GeometryInstance instance = geoObj as GeometryInstance;
foreach (GeometryObject instObj in instance.SymbolGeometry)
{
Debug.WriteLine("geoObj.GraphicsStyleId: " + geoObj.GraphicsStyleId);
Debug.WriteLine("geoObj.GetHashCode(): " + geoObj.GetHashCode()); // gets hashcode of selected cad link
if (instObj.GetType().Name == "PolyLine")
// if (instObj.GetType().Name == "GeometryInstance")
{
}
else
{
Debug.WriteLine("there are no blocks found in this CAD File");
}
}
}
tx.Commit();
} catch (Exception e )
{
Debug.WriteLine(e.StackTrace);
}
Revit API不提供对链接的CAD文件内部的任何访问。
[您所能做的就是实现一些AutoCAD.NET代码以读取DWG文件本身,只要您可以访问DWG并安装了AutoCAD。
[建筑编码员共享一些示例,展示了如何进行launch AutoCAD within a Revit add-in。