LEADTOOLS Annotations (Leadtools.Annotations assembly)

UserMode Property (AnnAutomationManager)

Show in webframe
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:
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 UserModeChanged event is fired when this property is changed.

Example
Copy Code  
Imports Leadtools
Imports Leadtools.Annotations
Imports Leadtools.WinForms
Imports Leadtools.Codecs

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
using Leadtools;
using Leadtools.Annotations;
using Leadtools.WinForms;
using Leadtools.Codecs;

public void AnnAutomationManager_UserMode(AnnAutomationManager manager)
{
   if(manager.UserMode == AnnUserMode.Design)
      manager.UserMode = AnnUserMode.Run;
   else
      manager.UserMode = AnnUserMode.Design;
}
Requirements

Target Platforms

See Also

Reference

AnnAutomationManager Class
AnnAutomationManager Members

 

 


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