LEADTOOLS Annotations for WPF and Silverlight (Leadtools.Windows.Annotations assembly)
LEAD Technologies, Inc

GripperDistance Property (AnnObject)

Example 





The distance in pixels that the RotateGripper control point is originally placed from the bounds of the AnnObject. This is a dependency property. .NET support Silverlight support
Syntax
public double GripperDistance {get; set;}
'Declaration
 
Public Property GripperDistance As Double
'Usage
 
Dim instance As AnnObject
Dim value As Double
 
instance.GripperDistance = value
 
value = instance.GripperDistance
public double GripperDistance {get; set;}
 get_GripperDistance();
set_GripperDistance(value);
public:
property double GripperDistance {
   double get();
   void set (    double value);
}

Property Value

The distance in pixels that the RotateGripper control point is originally placed from the bounds of the AnnObject.
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 WPF Annotation Rotation Options.
Example
Copy CodeCopy 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
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();
}
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();
}
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
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

AnnObject Class
AnnObject Members
UseRotateControlPoints Property

 

 


Products | Support | Contact Us | Copyright Notices

© 2006-2012 All Rights Reserved. LEAD Technologies, Inc.