Jump to content

Dimensioned Box Text option


Recommended Posts

There is not way I know of to set this through the interface. If I get a chance later I will try to see if there is a way do set the default in Vectorscript.

In the mean time, here is a script that will turn on the boxed text for every dimension in your drawing.

If you don't know what to do with the check out the post by Robert Anderson in the Vectorscript Share forum:

http://techboard.nemetschek.net/ubbthreads/ubbthreads.php?ubb=showflat&Number=93218#Post93218

Procedure BoxIt;

Procedure DoIt(H1:Handle);
Begin
SetObjectVariableBoolean(H1,5,True);
ResetObject(H1);
End;

Begin
ForEachObject(DoIt,((T=DIMENSION)));
End;

Run(BoxIt);

Link to comment

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