Imports Leadtools.Windows.Controls
Imports Leadtools.Windows.Annotations
Private Sub AnnAutomation_ResetRotatePoints(ByVal automation As AnnAutomation)
If automation.CanResetRotatePoints Then
automation.ResetRotatePoints()
Else
MessageBox.Show("The rotate control points cannot be reset!")
End If
End Sub
using Leadtools.Windows.Controls;
using Leadtools.Windows.Annotations;
using Leadtools.Demos;
using Leadtools.Help;
private void AnnAutomation_ResetRotatePoints(AnnAutomation automation)
{
if(automation.CanResetRotatePoints)
automation.ResetRotatePoints();
else
MessageBox.Show("The rotate control points cannot be reset!");
}
using Leadtools.Windows.Controls;
using Leadtools.Windows.Annotations;
using Leadtools.Examples;
using Leadtools.Silverlight.Demos;
private void AnnAutomation_ResetRotatePoints(AnnAutomation automation)
{
if(automation.CanResetRotatePoints)
automation.ResetRotatePoints();
else
MessageBox.Show("The rotate control points cannot be reset!");
}
Imports Leadtools.Windows.Controls
Imports Leadtools.Windows.Annotations
Imports Leadtools.Silverlight.Demos
Private Sub AnnAutomation_ResetRotatePoints(ByVal automation As AnnAutomation)
If automation.CanResetRotatePoints Then
automation.ResetRotatePoints()
Else
MessageBox.Show("The rotate control points cannot be reset!")
End If
End Sub