Autodesk ObjectARX
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
ZOOM ALL using code
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
There has a dwg file. After opening it, its extent don't show in the center of the screen. I know "Zoom all" works, but how to do it using code without opening the dwg in Autocad?
Thanks in advance.
Solved! Go to Solution.
Re: ZOOM ALL using code
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
I've find some help. Maybe it relates to manipulate AcdbView or AcdbViewport.
What's the differenc between view and viewport? To implement "Zoom All", whick one should be choosed?
Thanks a lot.
Re: ZOOM ALL using code
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Hi,
You can refer to the Developer's guide (arxdev.chm) from the ObjectARX folder about viewports.
Here is the explanation provided there :
<<<<
A viewport is a particular view of the drawing file, either in model space (TILEMODE=1) or paper space (TILEMODE=0). In model and paper space, viewports have different properties and are represented by objects of different types.
The current model space viewport configuration is contained in the AcDbViewportTable symbol table. The viewports in this configuration are represented by AcDbViewportTableRecord objects. Saved viewport configurations are contained in the AcDbViewTable symbol table and their views are represented by AcDbViewTableRecord objects. The model space viewports are always rectangular.
In a paper space layout, viewports are represented by AcDbViewport objects. These viewports can be complex clipped, that is they can be set to any arbitrary shape. In paper space, unlike model space, viewports do not need to be tiled. AcDbLayout objects, accessed from the ACAD_LAYOUT named object dictionary, describe the viewport configuration for that layout.
>>>>
By setting the viewport parameters, you ensure that the viewport displays the view that you are interested in.
You have mentioned that you have already found a sample code, but anyway here is one from the Devblog :
Hope this helps
Balaji
Developer Technical Services
Autodesk Developer Network
Re: ZOOM ALL using code
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Thanks. Balaji.

