LEADTOOLS Annotations (Leadtools.Annotations assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.29
RotateGripperControlPoint Property
See Also 
Leadtools.Annotations Namespace > AnnEditDesigner Class : RotateGripperControlPoint Property



The RotateGripperControlPoint Property is available in LEADTOOLS Document and Medical Imaging toolkits.

Gets or sets the AnnControlPoint object for the rotate gripper control point for this AnnEditDesigner.

Syntax

Visual Basic (Declaration) 
Public Overridable Property RotateGripperControlPoint As AnnControlPoint
Visual Basic (Usage)Copy Code
Dim instance As AnnEditDesigner
Dim value As AnnControlPoint
 
instance.RotateGripperControlPoint = value
 
value = instance.RotateGripperControlPoint
C# 
public virtual AnnControlPoint RotateGripperControlPoint {get; set;}
C++/CLI 
public:
virtual property AnnControlPoint^ RotateGripperControlPoint {
   AnnControlPoint^ get();
   void set (    AnnControlPoint^ value);
}

Property Value

The AnnControlPoint object used for displaying the rotate gripper control point for this AnnEditDesigner.

Example

This example changes the look of the rotate user interface by performing the following actions:

  1. Sets the rotate line pen to be solid red
  2. Changes the rotate center control point to be a black circle filled with red
  3. Changes the rotate gripper control point to be a blue rectangle filled with yellow

Visual BasicCopy Code
Public Sub AnnEditDesigner_RotateGripperControlPoint(ByVal editDesigner As AnnEditDesigner)
   Dim annPen As AnnPen = New AnnPen(System.Drawing.Color.Red, New AnnLength(4, AnnUnit.Pixel))
   editDesigner.RotateLinePen = annPen
   Dim cpCenter As AnnEllipseControlPoint = New AnnEllipseControlPoint()
   cpCenter.Pen = New AnnPen(Color.Black, New AnnLength(1, AnnUnit.Pixel))
   cpCenter.Brush = New AnnSolidBrush(Color.FromArgb(128, 255, 0, 0))
   cpCenter.Size = New AnnSize(12, 12, AnnUnit.Pixel)
   editDesigner.RotateCenterControlPoint = cpCenter

   Dim cpGripper As AnnRectangleControlPoint = New AnnRectangleControlPoint()
   cpGripper.Pen = New AnnPen(Color.Blue, New AnnLength(3, AnnUnit.Pixel))
   cpGripper.Brush = New AnnSolidBrush(Color.Yellow)
   cpGripper.Size = New AnnSize(8, 8, AnnUnit.Pixel)
   editDesigner.RotateGripperControlPoint = cpGripper
End Sub
C#Copy Code
public void AnnEditDesigner_RotateGripperControlPoint(AnnEditDesigner editDesigner)
{
   AnnPen annPen = new AnnPen(System.Drawing.Color.Red, new AnnLength(4, AnnUnit.Pixel));
   editDesigner.RotateLinePen = annPen;
   AnnEllipseControlPoint cpCenter = new AnnEllipseControlPoint();
   cpCenter.Pen = new AnnPen(Color.Black, new AnnLength(1, AnnUnit.Pixel));
   cpCenter.Brush = new AnnSolidBrush(Color.FromArgb(128, 255, 0, 0));
   cpCenter.Size = new AnnSize(12, 12, AnnUnit.Pixel);
   editDesigner.RotateCenterControlPoint = cpCenter;

   AnnRectangleControlPoint cpGripper = new AnnRectangleControlPoint();
   cpGripper.Pen = new AnnPen(Color.Blue, new AnnLength(3, AnnUnit.Pixel));
   cpGripper.Brush = new AnnSolidBrush(Color.Yellow);
   cpGripper.Size = new AnnSize(8, 8, AnnUnit.Pixel);
   editDesigner.RotateGripperControlPoint = cpGripper;
}

Remarks

For more information, refer to New Annotation Features of Version 14.5.

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7

See Also

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