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





Gets the rotate gripper control point location of the selected object in object coordinates.

Syntax

Visual Basic (Declaration) 
Public ReadOnly Property RotateGripperControlPointLocation As Point
Visual Basic (Usage)Copy Code
Dim instance As AnnEditDesigner
Dim value As Point
 
value = instance.RotateGripperControlPointLocation
C# 
public Point RotateGripperControlPointLocation {get;}
C++/CLI 
public:
property Point RotateGripperControlPointLocation {
   Point get();
}
XAML Syntax 
You cannot use this property in XAML.
XAML Syntax 
You cannot use this property in XAML.

Return Value

The rotate gripper control point location of the selected object in object coordinates.

Example

This example displays the location of the rotate control points in container coordinates.

Visual BasicCopy Code
Public Sub AnnEditDesigner_RotateGripperControlPointLocation(ByVal editDesigner As AnnEditDesigner)
    Dim ptC As System.Windows.Point = editDesigner.RotateCenterControlPointLocation
    Dim ptG As System.Windows.Point = editDesigner.RotateGripperControlPointLocation
  ' Transform the points by the AnnObject physical transform
    Dim pts() As System.Windows.Point = {New System.Windows.Point(ptC.X, ptC.Y), New System.Windows.Point(ptG.X, ptG.Y)}
  editDesigner.AdornedElement.RenderTransform.Value.Transform(pts)

  Dim s As String = String.Format("RotateCenterControlPoint({0},{1}), RotateGripperControlPoint({2},{3})", pts(0).X, pts(0).Y, pts(1).X, pts(1).Y)
  MessageBox.Show(s)
End Sub
C#Copy Code
public void AnnEditDesigner_RotateGripperControlPointLocation(AnnEditDesigner editDesigner) 

   Point ptC = editDesigner.RotateCenterControlPointLocation; 
   Point ptG = editDesigner.RotateGripperControlPointLocation; 
   // Transform the points by the AnnObject physical transform 
   Point[] pts = new Point[] { new Point(ptC.X, ptC.Y), new Point(ptG.X, ptG.Y) }; 
   editDesigner.AdornedElement.RenderTransform.Value.Transform(pts); 
 
   string s = String.Format("RotateCenterControlPoint({0},{1}), RotateGripperControlPoint({2},{3})", 
      pts[0].X, 
      pts[0].Y, 
      pts[1].X, 
      pts[1].Y); 
   MessageBox.Show(s); 
}

Remarks

(Read only) The selected object has two rotate control points:
  • Rotate center control point
  • Rotate gripper control point
This returns the location of the rotate gripper control point in object coordinates.

For more information, refer to WPF Annotation Rotation Options.

Requirements

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

See Also

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