大家帮我看看VB.net的这个问题。Object类型的问题!
Dim Sset As AcadSelectionSet-----这里可以改成ObjectWith Thisdrawing.SelectionSets
If Not (IsDBNull(.Item("this"))) Then
Sset = .Item("this")
Sset.Delete()
End If
Sset = .Add("this")
If Err.Number <> 0 Then Err.Clear()
End With
................................
Dim Ent(0) As AcadEntity-----这里用AcadEntity的时候是正常的,但是改成Object时下面的 Sset.AddItems(Ent)就出错是怎么回事?
Ent(0) =......
Sset.AddItems(Ent)
不是所有Object都有AddItems方法,这个恐怕只能用早绑定。 Dim Ent(0) As IDispatch
页:
[1]