Gets or sets the current user mode.
public AnnUserMode UserMode { get; set; }
Public Property UserMode As Leadtools.Annotations.AnnUserMode
public:
property Leadtools.Annotations.AnnUserMode UserMode {
Leadtools.Annotations.AnnUserMode get();
void set ( Leadtools.Annotations.AnnUserMode );
}
An AnnUserMode value that specifies the current user mode.
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.
This example flips the user mode between run and design.
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;
}
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
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET