CAD Forum - tips, tricks, discussion and utilities for AutoCAD, Inventor and other Autodesk products [www.cadforum.cz]
Cesky English Deutsch
Login/Register:
 Visitors: 1520 
Plex.Earth connects AutoCAD and Google Earth

CAD tip CAD tip # 7171:

Question CAD 
 %  platform  category 
Q - question

How to set a fixed size for a drawing window?

A - answer For renderings, for screen-captures of your drawings, or other similar actions you may need to fix the size of the document window (DWG drawing) in the main AutoCAD application window. To set the window size to a specified number of pixels (width + height) you can use the following simple LISP code (change the size parameters as needed):
;Sets drawing window size
;by CADstudio.cz
(vl-load-com)
(setq sizer_actdoc (vla-get-activedocument (vlax-get-acad-object)))
(vla-put-width sizer_actdoc 1000);W=1000px
(vla-put-height sizer_actdoc 800);H=800px
Copy the code via copy/paste, or save it to SIZER.LSP and load it with APPLOAD, or assign it to a new AutoCAD menu icon. The function changes the window size of the current document (even a maximized window).

You can also use the interactive version of SIZER.LSP - see www.cadstudio.cz/download

ACAD
100% *  CAD 
20.1.2010    6198x  
Comments   Tell a friend
applies to: AutoCAD ·

See also:
Tip 9063:Flip 3D faces (front/back) in AutoCAD.
Tip 8543:Setting command line background color from LISP.
Tip 8201:How to convert DTexts to MTexts (individually)?
Tip 7959:How to add layer description in AutoLISP?
Tip 7840:What are the differences between AutoLISP and VisualLISP?


Back   All CAD Tips All CAD tips&tricks

Convert Civil 3D COGO points to blocks with attributes. « | » PreSave reactor - automatic operations on drawing save.

Have we helped you? If you want to support the CAD Forum web service, consider buying one of our CAD applications, or our custom software development offerings, or donating via PayPal (see above). You may also add a link to your web - like this "fan" link: CAD Forum - tips, utilities, blocks for Autodesk products
CAD:    OS:    Categ: 
Text:  FAQ glossary   



Featuring:
Publish interactive 3D PDF models from AutoCAD, Inventor or Revit with Share3D More info


Please use these tips at your own risk.
CAD Studio (Xanadu) is not responsible for possible problems that may occur as a result of using any of these tips.
TOPlist