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



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

The distance in pixels that the RotateGripper control point is originally placed from the bounds of the AnnObject.

Syntax

Visual Basic (Declaration) 
Public Property GripperDistance As Integer
Visual Basic (Usage)Copy Code
Dim instance As AnnObject
Dim value As Integer
 
instance.GripperDistance = value
 
value = instance.GripperDistance
C# 
public int GripperDistance {get; set;}
C++/CLI 
public:
property int GripperDistance {
   int get();
   void set (    int value);
}

Property Value

The distance in pixels that the RotateGripper control point is originally placed from the bounds of the AnnObject.

Example

This example does the following:

  1. displays the RotateCenter and RotateGripper location (in object coordinates)
  2. changes the gripper distance to 60 pixels
  3. resets the rotate points to a new location (using the new gripper distance)

Visual BasicCopy Code
Public Sub AnnObject_GripperDistance(ByVal obj As AnnObject)
   Dim s As String = String.Format("RotateCenter: ({0},{1})  RotateGripper: ({2},{3})", obj.RotateCenter.X, obj.RotateCenter.Y, obj.RotateGripper.X, obj.RotateGripper.Y)
   MessageBox.Show(s)
   obj.GripperDistance = 60
   obj.ResetRotatePoints()
End Sub
C#Copy Code
public void AnnObject_GripperDistance(AnnObject obj)
{
   string s = String.Format("RotateCenter: ({0},{1})  RotateGripper: ({2},{3})",
      obj.RotateCenter.X, obj.RotateCenter.Y,
      obj.RotateGripper.X, obj.RotateGripper.Y);
   MessageBox.Show(s);
   obj.GripperDistance = 60;
   obj.ResetRotatePoints();
}

Remarks

When an AnnObject is first selected, two rotate handles appear: the RotateCenter and the RotateGripper. This property is the pixel distance that the RotateGripper is initially placed from the bounds of the AnnObject. 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