Jump to content

Recommended Posts

Posted

Hi All,

how is possible to find out what is the current Line weight:unsure:?

I appreciate any help:)

Posted

Current LineWeight is stored in celweight SysVar. -1 means "Bylayer"; -2 is "ByBlock; -3 is "Default".

But if you want the value of current LineWeigth try this

(if
 (minusp (setq celw (getvar 'celweight)))
 (nth (+ 3 celw)
      (list
        (getvar 'lwdefault)
        "ByBlock"
        (vla-get-Lineweight (vla-item (vla-get-Layers (vla-get-ActiveDocument (vlax-get-acad-object))) (getvar 'clayer)))
      )
 )
 celw
)

"Byblock" has no meaning until you use newly created object in a block and set Lweight for that block.

And keep in mind that the value returned is 100 times the real value (25 instead 0.25, for metric units)

  • Like 1
Posted

Stefan BMR, thank you very much.

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