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

RotateLinePen Property

Example 





Gets or sets the System.Windows.Media.Color used to draw a line between the rotate control points for all AnnEditDesigner derived objects. .NET support Silverlight support
Syntax
public Color RotateLinePen {get; set;}
'Declaration
 
Public Property RotateLinePen As Color
'Usage
 
Dim instance As AnnAutomationManager
Dim value As Color
 
instance.RotateLinePen = value
 
value = instance.RotateLinePen
public Color RotateLinePen {get; set;}
 get_RotateLinePen();
set_RotateLinePen(value);
public:
property Color RotateLinePen {
   Color get();
   void set (    Color value);
}

Property Value

The System.Windows.Media.Color used to draw a line between the rotate control points.
Remarks

This property gets or sets the pen that is used to draw the line that appears between the rotate control points when dragging either the center rotate control point or the gripper rotate control point.

Used when UserMode is AnnUserMode.Design.

For more information, refer to WPF Annotation Rotation Options.

Example
Copy CodeCopy Code  
Private Sub AnnAutomationManager_RotateLinePen(ByVal manager As AnnAutomationManager)
   manager.RotateLinePen = Colors.Red
   Dim center As Thumb = New Thumb()
   center.Width = 12
   center.Height = 12
   center.Background = New SolidColorBrush(Color.FromArgb(128, 255, 0, 0))
   center.BorderBrush = Brushes.Black
   center.BorderThickness = New Thickness(1.0)
   manager.RotateCenterControlPoint = center

   Dim gripper As Thumb = New Thumb()
   gripper.Background = Brushes.Yellow
   gripper.BorderBrush = Brushes.Blue
   gripper.BorderThickness = New Thickness(3.0)
   gripper.Width = 8
   gripper.Height = 8
   manager.RotateGripperControlPoint = gripper
End Sub
private void AnnAutomationManager_RotateLinePen(AnnAutomationManager manager)
{
   manager.RotateLinePen = Colors.Red;
   Thumb center = new Thumb();
   center.Width = center.Height = 12;
   center.Background = new SolidColorBrush(Color.FromArgb(128, 255, 0, 0));
   center.BorderBrush = Brushes.Black;
   center.BorderThickness = new Thickness(1.0);
   manager.RotateCenterControlPoint = center;

   Thumb gripper = new Thumb();
   gripper.Background = Brushes.Yellow;
   gripper.BorderBrush = Brushes.Blue;
   gripper.BorderThickness = new Thickness(3.0);
   gripper.Width = gripper.Height = 8;
   manager.RotateGripperControlPoint = gripper;
}
private void AnnAutomationManager_RotateLinePen(AnnAutomationManager manager)
{
   manager.RotateLinePen = Colors.Red;
   Thumb center = new Thumb();
   center.Width = center.Height = 12;
   center.Background = new SolidColorBrush(Color.FromArgb(128, 255, 0, 0));
   center.BorderBrush = new SolidColorBrush(Colors.Black);
   center.BorderThickness = new Thickness(1.0);
   manager.RotateCenterControlPoint = center;

   Thumb gripper = new Thumb();
   gripper.Background = new SolidColorBrush(Color.FromArgb(255, 128,128,0));
   gripper.BorderBrush = new SolidColorBrush(Colors.Blue);
   gripper.BorderThickness = new Thickness(3.0);
   gripper.Width = gripper.Height = 8;
   manager.RotateGripperControlPoint = gripper;
}
Private Sub AnnAutomationManager_RotateLinePen(ByVal manager As AnnAutomationManager)
   manager.RotateLinePen = Colors.Red
   Dim center As Thumb = New Thumb()
   center.Width = 12
   center.Height = 12
   center.Background = New SolidColorBrush(Color.FromArgb(128, 255, 0, 0))
   center.BorderBrush = New SolidColorBrush(Colors.Black)
   center.BorderThickness = New Thickness(1.0)
   manager.RotateCenterControlPoint = center

   Dim gripper As Thumb = New Thumb()
   gripper.Background = New SolidColorBrush(Color.FromArgb(255, 128,128,0))
   gripper.BorderBrush = New SolidColorBrush(Colors.Blue)
   gripper.BorderThickness = New Thickness(3.0)
   gripper.Width = 8
   gripper.Height = 8
   manager.RotateGripperControlPoint = gripper
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

AnnAutomationManager Class
AnnAutomationManager Members
ResetRotatePoints Method
CanResetRotatePoints Property
UseRotateControlPoints Property
RotateCenterControlPoint Property
RotateGripperControlPoint Property

 

 


Products | Support | Contact Us | Copyright Notices

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