xueshi 发表于 2005-3-29 09:39:00

[求助]在C#中,已知图块名称,如何快速找到指定图块?

如题,我想找到指定的图块,图块名我已经知道了,关键是如果快速找到它。我试过用SelectionSet,但在运行中出现错误。哪位达人指点一下:


//最后一关:如何快速找到指定图块?<BR>AcadSelectionSet acadSelSet = doc.SelectionSets.Add("FindBorder");<BR>int[] FilterType = new int[] { 0, 2 };


object [] FilterData = new object [] { "intsert",        "BORDER" };<BR>acadSelSet.Select(AcSelect.acSelectionSetAll, new double [] {0,0} , new double [] {0,0}, FilterType, FilterData); <FONT color=#dd2222>//在这儿出错</FONT>


能不能帮忙看一下,多谢<BR>

风子 发表于 2005-3-31 16:14:00

acadSelSet.Select(AcSelect.acSelectionSetAll, new double [] {0,0} , new double [] {0,0}, FilterType, FilterData);


你试着将上句中的两处new double [] {0,0} 改为 new Point2d(0,0)试试

雪山飞狐_lzh 发表于 2005-3-31 21:34:00

int[] FilterType = new int[] { 0, 2 };错


改为:


short[] FilterType = new short[] { 0, 2 };


       


点应该是:


new double [] {0,0,0}

lubing 发表于 2010-7-18 03:51:00

我也在找方法,不知道楼主的问题有没有得到解决。如果得到解决了,就麻烦分享一下哈

chpmould 发表于 2010-10-31 18:16:00

我也在找方法,不知道楼主的问题有没有得到解决
页: [1]
查看完整版本: [求助]在C#中,已知图块名称,如何快速找到指定图块?