Initializes a new instance of the
MedicalViewerAnnotationRuler class.
Syntax
Managed Extensions for C++ | |
---|
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 Basic | Copy 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