LEADTOOLS Annotations (Leadtools.Annotations assembly)
LEAD Technologies, Inc

UserMode Property (AnnAutomationManager)

Example 





Gets or sets the current user mode.
Syntax
public AnnUserMode UserMode {get; set;}
'Declaration
 
Public Property UserMode As AnnUserMode
'Usage
 
Dim instance As AnnAutomationManager
Dim value As AnnUserMode
 
instance.UserMode = value
 
value = instance.UserMode
public AnnUserMode UserMode {get; set;}
 get_UserMode();
set_UserMode(value);
public:
property AnnUserMode UserMode {
   AnnUserMode get();
   void set (    AnnUserMode value);
}

Property Value

An AnnUserMode value that specifies the current user mode.
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 Leadtools.Annotations.AnnAutomationManager.UserModeChanged event is fired when this property is changed.

Example
 
Public 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
public void AnnAutomationManager_UserMode(AnnAutomationManager manager)
{
   if(manager.UserMode == AnnUserMode.Design)
      manager.UserMode = AnnUserMode.Run;
   else
      manager.UserMode = AnnUserMode.Design;
}
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

AnnAutomationManager Class
AnnAutomationManager Members

 

 


Products | Support | Contact Us | Copyright Notices

© 2006-2012 All Rights Reserved. LEAD Technologies, Inc.