Gets or sets the current user mode.
public AnnUserMode UserMode { get; set; }
Public Property UserMode As AnnUserMode
@property (nonatomic) LTAnnUserMode userMode;
public AnnUserMode getUserMode()
public void setUserMode(AnnUserMode userMode)
public:
property AnnUserMode^ UserMode
{
AnnUserMode^ get()
void set(AnnUserMode^ value)
}
A AnnUserMode value that specifies the current user mode. The default value is AnnUserMode.Design.
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.
This example flips the user mode between run and design.
using LeadtoolsExamples.Common;
using Leadtools.Annotations.Automation;
using Leadtools.Annotations.Engine;
using Leadtools.Codecs;
using Leadtools.Controls;
using Leadtools.Annotations.WinForms;
using Leadtools.Annotations.Rendering;
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");
}
}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document