Jump to content

How to use QUICK DIMENSION (QDIM) VBA


sethians

Recommended Posts

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

Link to comment
Share on other sites

Welcome on board!

Try this one:

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

 

~'J'~

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...