Arbortext IsoDraw > Macro Language Reference > Object Data Types > Application Object - User Interface Preferences
  
Application Object - User Interface Preferences
Arbortext IsoDraw automatically creates the Application Object at start-up. Unlike other data types, you do not DEFINE the Application Object. It is always available.
With the Application object you can gain access to nearly all options available in the Arbortext IsoDraw preferences.
MESSAGE "Is Anti-Aliasing on? ->" + app.useAntiAliasing

IF (app.useAntiAliasing = false) THEN
app.useAntiAliasing = true
MESSAGE "Now Anti-Aliasing is on"
END IF