Registered forum members do not see this ad.
Hello i have this code to draw a polyline, i would like to add dimesions QDIM comand with VBA.
Sub Example_AddPolyline()
Dim linea As AcadPolyline
Dim puntos(0 To 14) As Double
puntos(0) = 0:
puntos(3) = 34.5:
puntos(6) = 50.2:
puntos(9) = 76.3:
puntos(12) = 120.5:
Set linea = ThisDrawing.ModelSpace.AddPolyline(puntos)
End Sub
Registered forum members do not see this ad.
Welcome on board!
Try this one:
~'J'~Code:Option Explicit Sub Example_QDim() Dim linea As AcadPolyline Dim puntos(0 To 14) As Double Dim hndl As String puntos(0) = 0: puntos(3) = 34.5: puntos(6) = 50.2: puntos(9) = 76.3: puntos(12) = 120.5: Set linea = ThisDrawing.ModelSpace.AddPolyline(puntos) hndl = linea.Handle ThisDrawing.Utility.Prompt (vbCr & "Handle: " & hndl) & vbCr ThisDrawing.SendCommand "_qdim" & vbCr & "(handent " & vbCr & Chr(34) & hndl & Chr(34) & ") " & vbCr & " PAUSE" & vbCr End Sub
The soul is healed by being with children. - Fyodor Dostoyevsky, novelist (1821-1881)
Bookmarks