*DisableUnitScaling()

Disables the unit scaling feature in HyperGraph 2D.

Syntax

*DisableUnitScaling (true, false)

Application

HyperGraph 2D

Inputs

true
Setting this argument to true disables unit scaling and hides the Enable Unit Scaling and Show Units Dialog check boxes in the HyperGraph 2D Options panel. To reverse this, you will have to delete the hwsettings.xml file in your installation.
false
Turns unit scaling off, but the Enable Unit Scaling and Show Units Dialog check boxes are still visible in the Options panel. This option cannot be undone.

Example

*BeginDefaults()
  *BeginPlotDefaults()
        *DisableUnitScaling(true)
  *EndPlotDefaults()

*EndDefaults()