是,也不是。
这都是我想出来的,所以不是真的,但应该能让人理解。
- sub test()
- dim dblPtOne(0 to 2) as double
- dim dblPtTwo(0 to 2) as double
- dim dblX as double
- dim dblY as double
- dblptone = thisdrawing.utility.getpoint(,"First point")
- dblpttwo = thisdrawing.utility.getpoint(,"Second point")
- dblx = dblptone(0) - dblpttwo(0)
- if dblx >在这里
-
- [code]Sub grdraw_test()
- Dim pt1, pt2
- Dim VL As Object
- Dim VLF As Object
- Dim VLO As Object
- Dim drawList As String
-
- Set VL = GetInterfaceObject("VL.Application.16") 'or .16 for 2004+
- Set VLF = VL.ActiveDocument.Functions
-
- On Error GoTo Resume_here 'this is just a quick way of handling an "enter to end the point selection process. A more robust handler shoud be used
-
- pt1 = ThisDrawing.Utility.GetPoint(, vbCr & "Start point: ")
- pt2 = ThisDrawing.Utility.GetPoint(pt1, vbCr & "Next point: ")
- drawList = "(grdraw " & pt_list(pt1) & " " & pt_list(pt2) & " 7)"
- Set VLO = VLF.Item("read").funcall(drawList)
- VLF.Item("eval").funcall VLO
- pt1 = pt2
-
- Resume_here:
- 'do stuff for leader
- Set VLO = VLF.Item("read").funcall("(redraw)")
- VLF.Item("eval").funcall VLO
- End Sub
- Private Function pt_list(pt) As String
- Dim newStr As String
- newStr = "'(" & pt(0) & " " & pt(1) & ")"
- pt_list = newStr
- End Function
|