LEADTOOLS Medical (Leadtools.MedicalViewer assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.31
MedicalViewerScale Constructor(Int32)
See Also  Example
Leadtools.MedicalViewer Namespace > MedicalViewerScale Class > MedicalViewerScale Constructor : MedicalViewerScale Constructor(Int32)



scale
The scaling factor

The MedicalViewerScale Constructor(Int32) is available as an add-on to the LEADTOOLS Medical Imaging toolkits.

Initializes a new instance of the MedicalViewerScale class with a specified scaling factor.

Syntax

Visual Basic (Declaration) 
Public Function New( _
   ByVal scale As Integer _
)
Visual Basic (Usage)Copy Code
Dim scale As Integer
 
Dim instance As New MedicalViewerScale(scale)
C# 
public MedicalViewerScale( 
   int scale
)
C++/CLI 
public:
MedicalViewerScale( 
   int scale
)

Parameters

scale
The scaling factor

Example

Change the Scale of an image

Visual BasicCopy Code
Public Sub MedicalViewerScaleExample3()
   Dim myForm As MedicalViewerForm = GetMedicalControl()
   Dim medicalViewer As MedicalViewer = myForm.Viewer
   Dim scale As MedicalViewerScale = New MedicalViewerScale(200)
   Dim cell As MedicalViewerMultiCell = CType(medicalViewer.Cells(0), MedicalViewerMultiCell)
   cell.SetActionProperties(MedicalViewerActionType.Scale, scale, 0)
   scale.Dispose()
   myForm.ShowDialog()
End Sub
C#Copy Code
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: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7

See Also

Leadtools.MedicalViewer requires a Medical Imaging license and unlock key. For more information, refer to: Imaging Pro/Document/Medical Features