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




Occurs when the value of the CurrentRubberStampType property changes.

Syntax

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

Example

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

Visual BasicCopy Code
Public Sub AnnAutomationManager_CurrentRubberStampTypeChanged(ByVal manager As AnnAutomationManager)
   AddHandler manager.CurrentRubberStampTypeChanged, AddressOf OnCurrentRubberStampTypeChanged
End Sub
Private Sub OnCurrentRubberStampTypeChanged(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("Rubber stamp is changed, new type is {0}", manager.CurrentRubberStampType))
End Sub
C#Copy Code
public void AnnAutomationManager_CurrentRubberStampTypeChanged(AnnAutomationManager manager) 

   manager.CurrentRubberStampTypeChanged += new EventHandler(OnCurrentRubberStampTypeChanged); 

private void OnCurrentRubberStampTypeChanged(object sender, EventArgs e) 

   AnnAutomationManager manager = sender as AnnAutomationManager; 
   MessageBox.Show(String.Format("Rubber stamp is changed, new type is {0}", manager.CurrentRubberStampType)); 
}

Remarks

This event is raised if the CurrentRubberStampType 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 2.0, Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

See Also

Leadtools.Annotations requires a Document or Medical toolkit license and unlock key. For more information, refer to: Raster Pro/Document/Medical Features