Jump to content
  • 0

Toggle shortcut for Zoom Line Thickness


Christiaan

Question

8 answers to this question

Recommended Posts

  • 0

Here's another version from VectorDepot by Katerina Panagiotakis

Procedure zoomline;

Var

p:boolean;

BEGIN

p:=GetPref(9);

If (p=false) then begin

SetPref(9,true);

end;

If (p=true) then begin

SetPref(9,false);

end;

end;

RUN ( zoomline );

and another by David Burkhe;

Procedure zoom;

begin

SetPref(9,not GetPref(9));

end;

run(zoom);

I'm not able to make a judgement about whether one is better than the other.

Note you can replace the "9" with the appropriate number for other preferences.

Check the vectorscript references on this site for the details.

cheers

Edited by propstuff
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
Answer this question...

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