Leadtools.Annotations Namespace > AnnAutomationManager Class : UserMode Property |
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); }
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.
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; }