←Select platform

CurrentObjectId Property

Summary

Gets or sets the current automation object id.

Syntax

C#
VB
C++
public int CurrentObjectId { get; set; } 
  
Public Property CurrentObjectId As Integer 
public: 
property int CurrentObjectId { 
   int get(); 
   void set (    int ); 
} 

Property Value

The current automation object id.

Remarks

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

Example

This example sets the line object as the current automation object.

C#
VB
using Leadtools; 
using Leadtools.Annotations; 
using Leadtools.WinForms; 
using Leadtools.Codecs; 
 
public 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 
Imports Leadtools.Annotations 
Imports Leadtools.WinForms 
Imports Leadtools.Codecs 
 
Public 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 

Requirements

Target Platforms

Help Version 19.0.2017.10.27
Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Annotations Assembly