Leadtools.Windows.Annotations Requires Document/Medical license. | Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
UserMode Property
See Also  Example
Leadtools.Windows.Annotations Namespace > AnnAutomationManager Class : UserMode Property





Gets or sets the current user mode.

Syntax

Visual Basic (Declaration) 
Public Property UserMode As AnnUserMode
Visual Basic (Usage)Copy Code
Dim instance As AnnAutomationManager
Dim value As AnnUserMode
 
instance.UserMode = value
 
value = instance.UserMode
C# 
public AnnUserMode UserMode {get; set;}
C++/CLI 
public:
property AnnUserMode UserMode {
   AnnUserMode get();
   void set (AnnUserMode value);
}
XAML Attributes Usage 

<object UserMode=Leadtools.Windows.Annotations.AnnUserMode .../>

XAML Attributes Usage 

<object UserMode=Leadtools.Windows.Annotations.AnnUserMode .../>

Return Value

An AnnUserMode value that specifies the current user mode.

Example

This example flips the user mode between run and design.

Visual BasicCopy Code
Private Sub AnnAutomationManager_UserMode(ByVal manager As AnnAutomationManager)
  If manager.UserMode = AnnUserMode.Design Then
    manager.UserMode = AnnUserMode.Run
  Else
    manager.UserMode = AnnUserMode.Design
  End If
End Sub
C#Copy Code
private void AnnAutomationManager_UserMode(AnnAutomationManager manager) 

   if(manager.UserMode == AnnUserMode.Design) 
      manager.UserMode = AnnUserMode.Run; 
   else 
      manager.UserMode = AnnUserMode.Design; 
}

Remarks

AnnUserMode.Design is for creating objects; AnnUserMode.Run mode is for viewing them.

Switching the user mode to AnnUserMode.Run automatically hides the automation ToolBar. Setting the user mode to AnnUserMode.Design displays the ToolBar.

The UserModeChanged event is fired when this property is changed.

Requirements

Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Vista, and Windows Server 2003 family

See Also

UserMode requires a Document/Medical product license and unlock key. For more information, refer to: Imaging Pro/Document/Medical Features and Unlocking Special LEAD Features.