我不想在运行时选择特定的折线。有没有办法在运行时使用C#直接获取.dwg文件中的所有折线? AutoCAD有一个名为DATAEXTRACTION的命令来获取不同对象的相关信息(例如折线,圆,点......等),但我不知道它是否可以在C#中调用和使用。
仅供参考:在运行期间从http://through-the-interface.typepad.com/through_the_interface/2007/04/iterating_throu.html
获取特定折线的示例代码Transaction tr = db.TransactionManager.StartTransaction();
using (tr)
{
DBObject obj = tr.GetObject(per.ObjectId, OpenMode.ForRead);
Polyline lwp = obj as Polyline; // Get the selected polyline during runtime
...
}
答案 0 :(得分:7)
听起来你正在寻找这样的东西。如果不需要,请删除图层标准。
public ObjectIdCollection SelectAllPolylineByLayer(string sLayer)
{
Document oDwg = Application.DocumentManager.MdiActiveDocument;
Editor oEd = oDwg.Editor;
ObjectIdCollection retVal = null;
try {
// Get a selection set of all possible polyline entities on the requested layer
PromptSelectionResult oPSR = null;
TypedValue[] tvs = new TypedValue[] {
new TypedValue(Convert.ToInt32(DxfCode.Operator), "<and"),
new TypedValue(Convert.ToInt32(DxfCode.LayerName), sLayer),
new TypedValue(Convert.ToInt32(DxfCode.Operator), "<or"),
new TypedValue(Convert.ToInt32(DxfCode.Start), "POLYLINE"),
new TypedValue(Convert.ToInt32(DxfCode.Start), "LWPOLYLINE"),
new TypedValue(Convert.ToInt32(DxfCode.Start), "POLYLINE2D"),
new TypedValue(Convert.ToInt32(DxfCode.Start), "POLYLINE3d"),
new TypedValue(Convert.ToInt32(DxfCode.Operator), "or>"),
new TypedValue(Convert.ToInt32(DxfCode.Operator), "and>")
};
SelectionFilter oSf = new SelectionFilter(tvs);
oPSR = oEd.SelectAll(oSf);
if (oPSR.Status == PromptStatus.OK) {
retVal = new ObjectIdCollection(oPSR.Value.GetObjectIds());
} else {
retVal = new ObjectIdCollection();
}
} catch (System.Exception ex) {
ReportError(ex);
}
return retVal;
}
答案 1 :(得分:5)
2015年1月12日更新
这也会起作用,让你不必处理所有类型的值......
我写了一篇关于这个主题的博文,Check it out.
public IList<ObjectId> GetIdsByType()
{
Func<Type,RXClass> getClass = RXObject.GetClass;
// You can set this anywhere
var acceptableTypes = new HashSet<RXClass>
{
getClass(typeof(Polyline)),
getClass(typeof (Polyline2d)),
getClass(typeof (Polyline3d))
};
var doc = Application.DocumentManager.MdiActiveDocument;
using (var trans = doc.TransactionManager.StartOpenCloseTransaction())
{
var modelspace = (BlockTableRecord)
trans.GetObject(SymbolUtilityServices.GetBlockModelSpaceId(doc.Database), OpenMode.ForRead);
var polylineIds = (from id in modelspace.Cast<ObjectId>()
where acceptableTypes.Contains(id.ObjectClass)
select id).ToList();
trans.Commit();
return polylineIds;
}
}
答案 2 :(得分:0)
我知道这是一个老问题,但是也许有人会发现它有用。
使用SelectionFilter仅选择打开或关闭的折线(任何类型的折线):
Document doc = Application.DocumentManager.MdiActiveDocument;
Editor ed = doc.Editor;
int polylineState = 1; // 0 - closed, 1 - open
TypedValue[] vals= new TypedValue[]
{
new TypedValue((int)DxfCode.Operator, "<or"),
// This catches Polyline object.
new TypedValue((int)DxfCode.Operator, "<and"),
new TypedValue((int)DxfCode.Start, "LWPOLYLINE"),
new TypedValue(70, polylineState),
new TypedValue((int)DxfCode.Operator, "and>"),
new TypedValue((int)DxfCode.Operator, "<and"),
new TypedValue((int)DxfCode.Start, "POLYLINE"),
new TypedValue((int)DxfCode.Operator, "<or"),
// This catches Polyline2d object.
new TypedValue(70, polylineState),
// This catches Polyline3d object.
new TypedValue(70, 8|polylineState),
new TypedValue((int)DxfCode.Operator, "or>"),
new TypedValue((int)DxfCode.Operator, "and>"),
new TypedValue((int)DxfCode.Operator, "or>"),
};
SelectionFilter filter = new SelectionFilter(vals);
PromptSelectionResult prompt = ed.GetSelection(filter);
// If the prompt status is OK, objects were selected
if (prompt.Status == PromptStatus.OK)
{
SelectionSet sset = prompt.Value;
Application.ShowAlertDialog($"Number of objects selected: {sset.Count.ToString()}");
}
else
{
Application.ShowAlertDialog("Number of objects selected: 0");
}
所有图形实体的列表:link 1 (older)或link 2 (newer)
在this link中,我们看到值为70的代码70是闭合的折线。
在this link中,我们看到折线2d / 3d同样适用,但是附加值为8的我们定义了它是2d还是3d折线。值可以按位组合,因此8 | 1表示封闭的3d折线。