MedicalViewerAnnotationHilite Class

Summary
Represents the class that contains the properties of the annotation hilite action.
Syntax
C#
C++/CLI
public class MedicalViewerAnnotationHilite : MedicalViewerAnnotation 
            public ref class MedicalViewerAnnotationHilite : public MedicalViewerAnnotation  
Remarks
Example

This example sets the properties for the hilite annotation action.

C#
using Leadtools; 
using Leadtools.Codecs; 
using Leadtools.MedicalViewer; 
 
public void MedicalViewerAnnotationHiliteExample1() 
{ 
   MedicalViewerForm myForm = GetMedicalControl(); 
   MedicalViewer medicalViewer = myForm.Viewer; 
   MedicalViewerMultiCell cell = (MedicalViewerMultiCell)(medicalViewer.Cells[0]); 
 
   MedicalViewerAnnotationHilite hilite = new MedicalViewerAnnotationHilite(); 
   hilite.AnnotationColor = Color.FromArgb(0, 0, 255); 
   hilite.Flags = MedicalViewerAnnotationFlags.AllObjects; 
   hilite.CreateFromCenter = true; 
   cell.SetActionProperties(MedicalViewerActionType.AnnotationHilite, hilite); 
 
   myForm.ShowDialog(); 
} 
Requirements

Target Platforms

Help Version 22.0.2023.2.5
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.MedicalViewer Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.