狼图腾 20:19:29
有谁可以告诉我用VBA编一个程序,拾取一个直径,然后改变这个直径的标注
狼图腾 20:20:17
谢谢大家
狼图腾 20:21:27
Public Function GetEntity(tDoc As AcadDocument, entObj As AcadEntity, ts As String) As Boolean
Dim pickPnt As Variant
On Error Resume Next
tDoc.Utility.GetEntity entObj, pickPnt, ts
If entObj Is Nothing Then
GetEntity = False
Else
GetEntity = True
End If
Err.Clear
End Function
可以帮我改改吗
我实在搞不出来了
谢谢 |