Author Topic: Standard scale of a viewport  (Read 1319 times)

0 Members and 1 Guest are viewing this topic.

latour_g

  • Newt
  • Posts: 184
Standard scale of a viewport
« on: April 24, 2014, 01:55:34 PM »
Hi,
I would like to know if there is a variable that would tell me the standard scale of a viewport ? In Visual Basic, it doesn't show the same thing as the properties in Autocad.  I have try AcadApp.GetSystemVariable("CANNOSCALE") but it give me the Annotation scale value.  Maybe something else would give me the standard scale ?
Thanks !

Jeff H

  • Needs a day job
  • Posts: 6150
Re: Standard scale of a viewport
« Reply #1 on: April 24, 2014, 03:41:52 PM »
Viewport.StandardScale Property

It is a StandardScaleType Enumeration

latour_g

  • Newt
  • Posts: 184
Re: Standard scale of a viewport
« Reply #2 on: April 24, 2014, 04:38:38 PM »
Thank you !