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



The distance in pixels that the AnnObject.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);
}

Return Value

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

Example

This example does the following:

  1. displays the AnnObject.RotateCenter and AnnObject.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 AnnObject.RotateCenter and the AnnObject.RotateGripper. This property is the pixel distance that the AnnObject.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 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family

See Also

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