LEADTOOLS Annotations for WPF and Silverlight (Leadtools.Windows.Annotations assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.31
AnnRulerObject Class
See Also  Members  
Leadtools.Windows.Annotations Namespace : AnnRulerObject Class



The AnnRulerObject Class supports WPF/Silverlight.

The AnnRulerObject Class is available in LEADTOOLS Document and Medical Imaging toolkits.

This class provides support for creating and managing Ruler annotation objects. Supported in Silverlight, Windows Phone 7

Object Model

AnnRulerObject Class

Syntax

Visual Basic (Declaration) 
Public Class AnnRulerObject 
   Inherits AnnLineObject
   Implements IAnnFontIAnnHeaderIAnnLineIAnnObjectIAnnRuler 
Visual Basic (Usage)Copy Code
Dim instance As AnnRulerObject
C# 
public class AnnRulerObject : AnnLineObject, IAnnFontIAnnHeaderIAnnLineIAnnObjectIAnnRuler  
C++/CLI 
public ref class AnnRulerObject : public AnnLineObject, IAnnFontIAnnHeaderIAnnLineIAnnObjectIAnnRuler  

Example

This method creates a new ruler object that extends from 10.0, 4.5 to 20.56, 40.3 and is measured in inches.

Visual BasicCopy Code
'''<!--This method creates a new ruler object that extends from 10.0, 4.5 to 20.56, 40.3 and is measured in inches.-->
Private Sub AnnRulerObject_AnnRulerObject(ByVal container As AnnContainer)
   Dim ruler As AnnRulerObject = New AnnRulerObject()
   ruler.Start = New Point(DirectCast(New LengthConverter().ConvertFrom("10in"), Double), DirectCast(New LengthConverter().ConvertFrom("4.5in"), Double))
   ruler.End = New Point(DirectCast(New LengthConverter().ConvertFrom("20.56in"), Double), DirectCast(New LengthConverter().ConvertFrom("40.3in"), Double))
   ruler.MeasurementUnit = AnnUnit.SmartEnglish
   ruler.TickMarksLength = DirectCast(New LengthConverter().ConvertFrom("0.5in"), Double)
   ruler.ShowTickMarks = True
   ruler.GaugeLength = DirectCast(New LengthConverter().ConvertFrom("1.0in"), Double)
   ruler.ShowGauge = True
   ruler.ShowLength = True
   ruler.Precision = 2
   ruler.Stroke = Colors.Red
   ruler.StrokeThickness = 4.0
   container.Children.Add(ruler)
End Sub
C#Copy Code
private void AnnRulerObject_AnnRulerObject(AnnContainer container)
{
   AnnRulerObject ruler = new AnnRulerObject();
   ruler.Start =  new Point((double)new LengthConverter().ConvertFrom("10in"), (double)new LengthConverter().ConvertFrom("4.5in"));
   ruler.End = new Point((double)new LengthConverter().ConvertFrom("20.56in"), (double)new LengthConverter().ConvertFrom("40.3in"));
   ruler.Stroke = Colors.Red;

   ruler.MeasurementUnit = AnnUnit.SmartEnglish;
   ruler.TickMarksLength = (double)new LengthConverter().ConvertFrom("0.5in");
   ruler.ShowTickMarks = true;
   ruler.GaugeLength = (double)new LengthConverter().ConvertFrom("1.0in");
   ruler.ShowGauge = true;
   ruler.ShowLength = true;
   ruler.Precision = 2;
   ruler.StrokeThickness = 4.0;
   container.Children.Add(ruler);
}
SilverlightCSharpCopy Code
private void AnnRulerObject_AnnRulerObject(AnnContainer container)
{
   AnnRulerObject ruler = new AnnRulerObject();
   ruler.Start = new Point(750, 337);
   ruler.End = new Point(1542, 3022);
   ruler.Stroke = Colors.Red;

   ruler.MeasurementUnit = AnnUnit.Pixel;
   ruler.TickMarksLength = 37;
   ruler.ShowTickMarks = true;
   ruler.GaugeLength = 75;
   ruler.ShowGauge = true;
   ruler.ShowLength = true;
   ruler.Precision = 2;
   ruler.StrokeThickness = 4.0;
   container.Children.Add(ruler);
}
SilverlightVBCopy Code
Private Sub AnnRulerObject_AnnRulerObject(ByVal container As AnnContainer)
   Dim ruler As AnnRulerObject = New AnnRulerObject()
   ruler.Start = New Point(750, 337)
   ruler.End = New Point(1542, 3022)
   ruler.Stroke = Colors.Red

   ruler.MeasurementUnit = AnnUnit.Pixel
   ruler.TickMarksLength = 37
   ruler.ShowTickMarks = True
   ruler.GaugeLength = 75
   ruler.ShowGauge = True
   ruler.ShowLength = True
   ruler.Precision = 2
   ruler.StrokeThickness = 4.0
   container.Children.Add(ruler)
End Sub
XAMLCopy Code
<Window x:Class="WPFSamples.AnnRulerObject" Title="Leadtools.Windows.Annotations" Height="600" Width="800" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:Leadtools_Windows_Annotations="clr-namespace:Leadtools.Windows.Annotations;assembly=Leadtools.Windows.Annotations">
  <Leadtools_Windows_Annotations:AnnRulerObject X1="10in" Y1="4.5in" X2="20.56in" Y2="40.3in" DpiX="0.0" DpiY="0.0" MeasurementUnit="SmartEnglish" TickMarksLength="0.5in" ShowTickMarks="True" GaugeLength="1.0in" ShowGauge="True" ShowLength="True" Precision="0" Stroke="Red" StrokeThickness="4.0" />
</Window>

Remarks

The annotation ruler object is characterized by starting and ending points, a stroke, a length, tick marks, and a gauge. For more information, refer to Using Rulers in WPF Annotation Objects.

For more information about the ruler annotation object refer to AnnRulerObject for WPF. For more information about the automated ruler annotation object, refer to WPF Annotation Objects - Automated Features and WPF Automated Annotations - Ruler Tab.

Inheritance Hierarchy

System.Object
   System.Windows.Threading.DispatcherObject
      System.Windows.DependencyObject
         Leadtools.Windows.Annotations.AnnObject
            Leadtools.Windows.Annotations.AnnLineObject
               Leadtools.Windows.Annotations.AnnRulerObject

Requirements

Target Platforms: Silverlight 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7, MAC OS/X (Intel Only)

See Also

AnnRulerObject requires a Document/Medical product license and unlock key. For more information, refer to: Imaging Pro/Document/Medical Features and Unlocking Special LEAD Features.