Jump to content

Recommended Posts

Posted

Is it possible to visually see if text in a dimension has been manually over ridden without have to go to the editor or properties?

Posted

I believe your best bet is PROPERTIES.

 

Here you will see if the dimension is over ridden.

 

If not over ridden, perhaps the drawing is not to scale.

Adjust scale if needed.

Posted

Will only select Dimensions that have been edited.

 

(defun c:Test nil
 (sssetfirst
   nil
   (ssget "_X"
          '((-4 . "<AND") (0 . "DIMENSION") (-4 . "<NOT") (1 . "") (-4 . "NOT>") (-4 . "AND>"))
   )
 )
 (princ)
)

Posted

Nevermind, didn't need the AND.

 

(defun c:Test nil
 (sssetfirst
   nil
   (ssget "_X" '((0 . "DIMENSION") (-4 . "<NOT") (1 . "") (-4 . "NOT>")))
 )
 (princ)
)

Posted

You might want to download a free program from my website called ChkDims.lsp.

 

It will place a red circle with an X over dimensions that contain text overrides and a green box over good dimensions. It also has an option to clean up the markers.

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