←Select platform

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#
VB
C++
  
Public Function New( _ 
   ByVal width As Integer, _ 
   ByVal height As Integer, _ 
   ByVal zoom As Integer, _ 
   ByVal penColor As Color, _ 
   ByVal elliptical As Boolean, _ 
   ByVal borderSize As Integer, _ 
   ByVal border3d As Boolean, _ 
   ByVal crosshair As Leadtools.Medicalviewer.MedicalViewerCrosshairStyle _ 
) 
             
            public: 
MedicalViewerMagnifyGlass(  
   int width, 
   int height, 
   int zoom, 
   Color penColor, 
   bool elliptical, 
   int borderSize, 
   bool border3d, 
   Leadtools.Medicalviewer.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#
VB
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(); 
} 
Imports Leadtools 
Imports Leadtools.Codecs 
Imports Leadtools.MedicalViewer 
 
Public Sub MedicalViewerMagnifyGlassConstructorExample() 
   Dim myForm As MedicalViewerForm = GetMedicalControl() 
   Dim medicalViewer As MedicalViewer = myForm.Viewer 
   Dim cell As MedicalViewerMultiCell = CType(medicalViewer.Cells(0), MedicalViewerMultiCell) 
 
   Dim magnifyGlass As MedicalViewerMagnifyGlass = New MedicalViewerMagnifyGlass(200, 200, 400, Color.FromArgb(255, 0, 0), False, 3, True, MedicalViewerCrosshairStyle.Fine) 
   cell.SetActionProperties(MedicalViewerActionType.MagnifyGlass, magnifyGlass) 
   myForm.ShowDialog() 
End Sub 

Requirements

Target Platforms

Help Version 19.0.2017.10.27
Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.MedicalViewer Assembly