Select to view content in your preferred language

Programmatically Turn off Orientation Indicator

701
1
07-15-2010 10:02 AM
MargoBlosser
Deactivated User
Hello???I am after the same functionality  exposed in the AE Display tab that allows a user to turn off the Orientation Indicator by setting the position to off.


I have tried the following code:

ESRI.ArcGISExplorer.Application.Application.ActiveMapDisplay.Settings.ShowNavigator = False

This only turns the navigation feature off.

The Navigator position enumeration only has a topleft and bottomleft enumeration. What I need is an off position for the following code:

Dim navpos As ESRI.ArcGISExplorer.Mapping.NavigatorPosition = NavigatorPosition.TopLeft

Any suggestions would be appreciated,

Margo
0 Kudos
1 Reply
AndreiIvanov
Deactivated User
Hi Margo,

try this:

ESRI.ArcGISExplorer.Application.Application.ActiveMapDisplay.Settings.ShowNorthArrow = False;
0 Kudos