Leadtools.MedicalViewer Requires Medical Imaging license | Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
MedicalViewerAnnotationRuler Constructor(Boolean)
See Also  Example
Leadtools.MedicalViewer Namespace > MedicalViewerAnnotationRuler Class > MedicalViewerAnnotationRuler Constructor : MedicalViewerAnnotationRuler Constructor(Boolean)



simpleRuler
true to create a ruler without tick marks (which means that the ruler will be like a line, false otherwise.
Initializes a new instance of the MedicalViewerAnnotationRuler class.

Syntax

Visual Basic (Declaration) 
Public Function New( _
   ByVal simpleRuler As Boolean _
)
Visual Basic (Usage)Copy Code
Dim simpleRuler As Boolean
 
Dim instance As MedicalViewerAnnotationRuler(simpleRuler)
C# 
public MedicalViewerAnnotationRuler( 
   bool simpleRuler
)
C++/CLI 
public:
MedicalViewerAnnotationRuler( 
   bool simpleRuler
)

Parameters

simpleRuler
true to create a ruler without tick marks (which means that the ruler will be like a line, false otherwise.

Example

Change the properties for the ruler annotation action

Visual BasicCopy Code
<Test> _
Public Sub MedicalViewerAnnotationRulerExample2()
   Dim myForm As MedicalViewerForm = GetMedicalControl()
   Dim medicalViewer As MedicalViewer = myForm.Viewer
   Dim ruler As MedicalViewerAnnotationRuler = New MedicalViewerAnnotationRuler(True)
   ruler.AnnotationColor = Color.FromArgb(0, 0, 255)
   ruler.Flags = MedicalViewerAnnotationFlags.AllObjects
   medicalViewer.SetActionProperties(MedicalViewerActionType.AnnotationRuler, ruler)

   myForm.ShowDialog()
End Sub
C#Copy Code
public void MedicalViewerAnnotationRulerExample2() 

   MedicalViewerForm myForm = GetMedicalControl(); 
   MedicalViewer medicalViewer = myForm.Viewer; 
 
   MedicalViewerAnnotationRuler ruler = new MedicalViewerAnnotationRuler(true); 
   ruler.AnnotationColor = Color.FromArgb(0, 0, 255); 
   ruler.Flags = MedicalViewerAnnotationFlags.AllObjects; 
   medicalViewer.SetActionProperties(MedicalViewerActionType.AnnotationRuler, ruler); 
 
   myForm.ShowDialog(); 
}

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

See Also

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