MedicalViewerMagnifyGlass Constructor(int,int,int,Color,bool,int,bool,MedicalViewerCrosshairStyle)

Summary

Initializes a new instance of the MedicalViewerMagnifyGlass class with specified width, height, zoom factor, border color, shape, 3D border value, and crosshair style.

Syntax
C#
C++/CLI
            public: 
MedicalViewerMagnifyGlass(  
   int width, 
   int height, 
   int zoom, 
   Color penColor, 
   bool elliptical, 
   int borderSize, 
   bool border3d, 
   MedicalViewerCrosshairStyle crosshair 
) 

Parameters

width
The width of the magnifying glass.

height
The height of the magnifying glass.

zoom
The zoom factor of the magnifying glass.

penColor
The color of the magnifying glass border

elliptical
true to show an elliptical magnifying glass, false to show a rectangular magnifying glass.

borderSize
The border thickness of the magnifying glass .

border3d
true to show a 3D border, false to show a flat border.

crosshair
The style of crosshair of the magnifying glass.

Example

Change the appearance of the magnify glass

C#
using Leadtools; 
using Leadtools.Codecs; 
using Leadtools.MedicalViewer; 
 
public void MedicalViewerMagnifyGlassConstructorExample() 
{ 
   MedicalViewerForm myForm = GetMedicalControl(); 
   MedicalViewer medicalViewer = myForm.Viewer; 
   MedicalViewerMultiCell cell = (MedicalViewerMultiCell)(medicalViewer.Cells[0]); 
 
   MedicalViewerMagnifyGlass magnifyGlass = new MedicalViewerMagnifyGlass(200, 200, 400, Color.FromArgb(255, 0, 0), false, 3, true, MedicalViewerCrosshairStyle.Fine); 
   cell.SetActionProperties(MedicalViewerActionType.MagnifyGlass, magnifyGlass); 
   myForm.ShowDialog(); 
} 
Requirements

Target Platforms

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

Leadtools.MedicalViewer Assembly

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