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.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;} |
Property Value
The distance in pixels that the RotateGripper control point is originally placed from the bounds of the AnnObject.This example does the following:
- displays the RotateCenter and RotateGripper location (in object coordinates)
- changes the gripper distance to 60 pixels
- resets the rotate points to a new location (using the new gripper distance)
Visual Basic | Copy 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(); } |
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.
Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7