(Leadtools.Annotations.Automation)

UserMode Property

Show in webframe
Example 




Gets or sets the current user mode.
Syntax
public AnnUserMode UserMode {get; set;}
public AnnUserMode UserMode {get; set;}
@property (nonatomic) LTAnnUserMode userMode;
public AnnUserMode getUserMode()
public void setUserMode(AnnUserMode userMode)
            
 
get_UserMode();
set_UserMode(value);
Object.defineProperty('UserMode');

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
Copy Code  
using Leadtools.Annotations.Automation;
using Leadtools.Annotations.Core;
using Leadtools.Codecs;
using Leadtools.WinForms;

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");
   }
}
using Leadtools.Converters;
using Leadtools.Annotations.Automation;
using Leadtools.Controls;
using Leadtools.Annotations.Core;
using Leadtools.Codecs;

[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

See Also

Reference

AnnAutomationManager Class
AnnAutomationManager Members

 

 


Products | Support | Contact Us | Copyright Notices
© 2006-2014 All Rights Reserved. LEAD Technologies, Inc.