For a plot area Window

Discussion in 'AutoCAD' started by Marcel Goulet, Mar 31, 2005.

  1. Hi,

    For a plot area Window type, where AutoCAD store the data for the window location ? And, can we put our own window data for the window type plot area for the page setup ?

    I think that should be available in Visual Lisp...

    Thanks
     
    Marcel Goulet, Mar 31, 2005
    #1
  2. Marcel Goulet

    Jeff Mishler Guest

    (setq layout (vla-get-activelayout *doc*))
    (if (eq (vla-get-plottype layout) acWindow)
    (vla-getwindowtoplot layout 'll_cor 'ur_cor)
    )

    And to set it use SetWindowToPlot
     
    Jeff Mishler, Mar 31, 2005
    #2
  3. Thanks alot for thos functions. Why are they not listed ?

    Or where can I found those function?

    I also need to put and get the custom scale. What is the function of the value for the custome scale ?

    The first value is almost of the time set to 1mm or inches but I absolutely need to change the second value.

    Thanks...
     
    Marcel Goulet, Mar 31, 2005
    #3
  4. Marcel Goulet

    Jeff Mishler Guest

    These are all listed in the ActiveX and VBA Reference under the
    PlotConfiguration & Layout Objects.......
     
    Jeff Mishler, Mar 31, 2005
    #4
Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments (here). After that, you can post your question and our members will help you out.