Jump to content

Dimensions


Recommended Posts

I'm a little confused with dimension class. If I imput a dimension and it automatically goes on dimension class should it not also take on the line wieghts and color of the dimension class. Mine seems to take on the character of my attribute palette. How can I have my dimensions always come out STD?

Also is there a way to change the line wieght of the dimension line extensions? Mine doesn't seem to change.

Also I can't seem to find a toggle to automatically keep my precision to 1/2". I after I input my dimension I can change it but I would like them never to show 1/8" inch.

Regards

John T

Link to comment

John,

1) Open the CLASS dialog and double click on the dim's class. Check to make sure that "use at creation" is selected. If not, your dim's (and any other class for that matter) will take on whatever you have set as the default at the time.

2)(I think this is what you meant) Go FILE>PREFERENCES>DOCUMENT PREFERENCES and click on the DIM"S tab. You can change the slash weight here.

3) Go to PAGE>UNITS... Here you will find three items in the scroll down, each of which can be user set.

Hope that helps :-)

Link to comment

Try this...

Procedure DeActivateClass;

VAR

x, y: Real;

h: Handle;

active, Name:STRING;

message :integer;

Result:BOOLEAN;

BEGIN

repeat

begin

active:=Activeclass;

GetPt(x,y);

h:=PickObject(x,y);

setSelect(h);

if h<>nil then begin

Name:=GetClass(h);

if (GetClass(h)=active) then

SysBeep;

if (GetClass(h)<>active) then begin

HideClass(Name);

end;

setDSelect(h);

end;

end;

ReDraw;

until h=nil;

END;

Run(DeActivateClass);

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