Leadtools.Windows.Annotations Requires Document/Medical license. | Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
CurrentObjectIdChanged Event
See Also  Example
Leadtools.Windows.Annotations Namespace > AnnAutomationManager Class : CurrentObjectIdChanged Event



Occurs when the value of the CurrentObjectId property changes.

Syntax

Visual Basic (Declaration) 
Public Event CurrentObjectIdChanged() As EventHandler
Visual Basic (Usage)Copy Code
Dim instance As AnnAutomationManager
Dim handler As EventHandler
 
AddHandler instance.CurrentObjectIdChanged, handler
C# 
public event EventHandler CurrentObjectIdChanged()
C++/CLI 
public:
event EventHandler^ CurrentObjectIdChanged();

Example

This example subscribes to the CurrentObjectIdChanged event in order to update a UI element.

Visual BasicCopy Code
Private Sub AnnAutomationManager_CurrentObjectIdChanged(ByVal manager As AnnAutomationManager)
  AddHandler manager.CurrentObjectIdChanged, AddressOf OnCurrentObjectIdChanged
End Sub
Private Sub OnCurrentObjectIdChanged(ByVal sender As Object, ByVal e As EventArgs)
  Dim manager As AnnAutomationManager = CType(IIf(TypeOf sender Is AnnAutomationManager, sender, Nothing), AnnAutomationManager)
  MessageBox.Show(String.Format("Object Id changed, new Id is {0}", manager.CurrentObjectId))
End Sub
C#Copy Code
private void AnnAutomationManager_CurrentObjectIdChanged(AnnAutomationManager manager) 

   manager.CurrentObjectIdChanged += new EventHandler(OnCurrentObjectIdChanged); 

private void OnCurrentObjectIdChanged(object sender, EventArgs e) 

   AnnAutomationManager manager = sender as AnnAutomationManager; 
   MessageBox.Show(String.Format("Object Id changed, new Id is {0}", manager.CurrentObjectId)); 
}

Remarks

This event is raised if the CurrentObjectId property is changed by either a programmatic modification or by the user clicking on one of the ToolBar buttons.

Requirements

Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Vista, and Windows Server 2003 family

See Also

CurrentObjectIdChanged requires a Document/Medical product license and unlock key. For more information, refer to: Imaging Pro/Document/Medical Features and Unlocking Special LEAD Features.