Error processing SSI file
LEADTOOLS Medical (Leadtools.MedicalViewer assembly)

Show in webframe

MedicalViewerScale Constructor(Int32)






The scaling factor
Initializes a new instance of the MedicalViewerScale class with a specified scaling factor.
Syntax
public MedicalViewerScale(    int scale )
'Declaration   Public Function New( _    ByVal scale As Integer _ )
'Usage   Dim scale As Integer   Dim instance As New MedicalViewerScale(scale)
public: MedicalViewerScale(    int scale )

Parameters

scale
The scaling factor
Example

Change the Scale of an image

Copy Code  
Imports Leadtools
Imports Leadtools.Codecs
Imports Leadtools.MedicalViewer

<TestMethod()> _
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
using Leadtools;
using Leadtools.Codecs;
using Leadtools.MedicalViewer;

[TestMethod]
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

See Also

Reference

MedicalViewerScale Class
MedicalViewerScale Members
Overload List

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