bland 发表于 2005-4-28 07:37:00

VBA中的类似lisp 里的entlast命令是什么?

我想获取boundary命令刚刚生成的polyline图元。
lisp 里是entlast命令。

ljpnb 发表于 2005-4-28 10:04:00

可以用选择集来实现:
Sub Example_Select()
                       ' Create the selection set
                       Dim ssetObj As AcadSelectionSet
                       Set ssetObj = ThisDrawing.SelectionSets.Add("SSET")
                       
                       Dim mode As Integer
                       mode = acSelectionSetLast
                       ssetObj.Select mode
                                       
End Sub

bland 发表于 2005-4-28 23:18:00

3ks

xqyhome 发表于 2005-4-30 16:47:00

VBA中相当于lisp中的entsel命令是什么?
页: [1]
查看完整版本: VBA中的类似lisp 里的entlast命令是什么?