MedicalViewerScale Constructor(int)

Summary
Initializes a new instance of the MedicalViewerScale class with a specified scaling factor.
Syntax
C#
C++/CLI
public MedicalViewerScale( 
   int scale 
) 
            public: 
MedicalViewerScale(  
   int scale 
) 

Parameters

scale
The scaling factor

Example

Change the Scale of an image

C#
using Leadtools; 
using Leadtools.Codecs; 
using Leadtools.MedicalViewer; 
 
public void MedicalViewerScaleExample3() 
{ 
   MedicalViewerForm myForm = GetMedicalControl(); 
   MedicalViewer medicalViewer = myForm.Viewer; 
   MedicalViewerScale scale = new MedicalViewerScale(200); 
   MedicalViewerMultiCell cell = (MedicalViewerMultiCell)(medicalViewer.Cells[0]); 
   cell.SetActionProperties(MedicalViewerActionType.Scale, scale, 0); 
   scale.Dispose(); 
   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.