Jump to content

Mleader ;;; vla-put-???


Lee Roy

Recommended Posts

I'm looking for the VLA-PUT-command to set an mleader style to current. I know it's possible with command-line, but I would rather use vla, seeing as the rest of the mleader creation is using vlax-put-property.

 

Thanks,

Lee

Link to comment
Share on other sites

(setvar 'CMLEADERSTYLE <YourStyleHere>)

 

Or, if you really (and unnecessarily) wanted to use VL:

 

(vla-setvariable
   (vla-get-activedocument (vlax-get-acad-object))
   "CMLEADERSTYLE"
   (vlax-make-variant "YourStyleHere" vlax-vbstring)
)

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...