The Scale Property is available as an add-on to the LEADTOOLS Medical Imaging toolkits.
Gets or sets the value that indicates the scaling factor, given as a percentage.
Syntax
Visual Basic (Declaration) | |
---|
Public Property Scale As Integer |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As MedicalViewerScale
Dim value As Integer
instance.Scale = value
value = instance.Scale |
C# | |
---|
public int Scale {get; set;} |
C++/CLI | |
---|
public:
property int Scale {
int get();
void set ( int value);
} |
Property Value
Value that indicates the scaling factor, given in percentage. Default is 100.
Example
This example changes the Scale of an image
Visual Basic | Copy Code |
---|
Public Sub MedicalViewerScaleExample2()
Dim myForm As MedicalViewerForm = GetMedicalControl()
Dim medicalViewer As MedicalViewer = myForm.Viewer
Dim scale As MedicalViewerScale = New MedicalViewerScale()
Dim cell As MedicalViewerMultiCell = CType(medicalViewer.Cells(0), MedicalViewerMultiCell)
scale.Scale = 200
cell.SetActionProperties(MedicalViewerActionType.Scale, scale, 0)
scale.Dispose()
myForm.ShowDialog()
End Sub |
C# | Copy Code |
---|
public void MedicalViewerScaleExample2()
{
MedicalViewerForm myForm = GetMedicalControl();
MedicalViewer medicalViewer = myForm.Viewer;
MedicalViewerScale scale = new MedicalViewerScale();
MedicalViewerMultiCell cell = (MedicalViewerMultiCell)(medicalViewer.Cells[0]);
scale.Scale = 200;
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