Gets or sets the current automation object ID.
public int CurrentObjectId { get; set; }
Public Property CurrentObjectId As Integer
The current automation object ID.
The current automation object ID is the AnnAutomationObject.Id of the AnnAutomationObject currently selected in the ToolBar. This object is the "active" object to be drawn on the current active AnnAutomation. You can change the value of this property programmatically. It also changes when the user clicks on the buttons of the automation ToolBar.
The CurrentObjectIdChanged event is fired when this property is changed
This example sets the line object as the current automation object.
using Leadtools.Windows.Controls;
using Leadtools.Windows.Annotations;
using Leadtools.Demos;
using Leadtools.Help;
private void AnnAutomationManager_CurrentObjectId(AnnAutomationManager manager)
{
// if you are using the automation toolbar, notice the line button gets selected as well
manager.CurrentObjectId = AnnAutomationManager.LineObjectId;
}
Imports Leadtools.Windows.Controls
Imports Leadtools.Windows.Annotations
Private Sub AnnAutomationManager_CurrentObjectId(ByVal manager As AnnAutomationManager)
' if you are using the automation toolbar, notice the line button gets selected as well
manager.CurrentObjectId = AnnAutomationManager.LineObjectId
End Sub
using Leadtools.Windows.Controls;
using Leadtools.Windows.Annotations;
using Leadtools.Examples;
using Leadtools.Silverlight.Demos;
//using Leadtools.Help;
private void AnnAutomationManager_CurrentObjectId(AnnAutomationManager manager)
{
// if you are using the automation toolbar, notice the line button gets selected as well
manager.CurrentObjectId = AnnAutomationManager.LineObjectId;
}
Imports Leadtools.Windows.Controls
Imports Leadtools.Windows.Annotations
Imports Leadtools.Silverlight.Demos
'using Leadtools.Help;
Private Sub AnnAutomationManager_CurrentObjectId(ByVal manager As AnnAutomationManager)
' if you are using the automation toolbar, notice the line button gets selected as well
manager.CurrentObjectId = AnnAutomationManager.LineObjectId
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