LEADTOOLS WinRT (Leadtools.Annotations.Automation)
LEAD Technologies, Inc

UserMode Property

Example 

Gets or sets the current user mode. WinRT support
Syntax
public AnnUserMode UserMode {get; set;}
 get_UserMode();
set_UserMode(value);

Property Value

A AnnUserMode value that specifies the current user mode. The default value is AnnUserMode.Design.
Remarks

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

The UserModeChanged event is fired when the value of this property is changed.

Example
 
[TestMethod]
public void AnnAutomationManager_UserMode()
{
   AnnAutomationManager manager = _automation.Manager;
   if (manager.UserMode == AnnUserMode.Design)
   {
      manager.UserMode = AnnUserMode.Run;
      Debug.WriteLine("User mode is run, click again to go to design mode");
   }
   else
   {
      manager.UserMode = AnnUserMode.Design;
      Debug.WriteLine("User mode is design, click again to go to run mode");
   }
}
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.