Leadtools.MedicalViewer Requires Medical product license | Send comments on this topic. | Back to Introduction - All Topics | Help Version 15.10.31
Scale Property
See Also  Example
Leadtools.MedicalViewer Namespace > MedicalViewerScale Class : Scale Property




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;}
Managed Extensions for C++ 
public: __property int get_Scale();
public: __property void set_Scale( 
   int value
);
C++/CLI 
public:
property int Scale {
   int get();
   void set (int value);
}

Return Value

Value that indicates the scaling factor, given in percentage. Default is 100.

Example

Change the Scale of an image

Visual BasicCopy Code
<Test> _
Public Sub MedicalViewerScaleExample2()
   Dim myForm As MedicalViewerForm = GetMedicalControl()
   Dim medicalViewer As MedicalViewer = myForm.Viewer
   Dim scale As MedicalViewerScale = New MedicalViewerScale()
   scale.Scale = 200
   medicalViewer.SetActionProperties(MedicalViewerActionType.Scale, scale, 0)
   myForm.ShowDialog()
End Sub
C#Copy Code
public void MedicalViewerScaleExample2() 

   MedicalViewerForm myForm = GetMedicalControl(); 
   MedicalViewer medicalViewer = myForm.Viewer; 
   MedicalViewerScale scale = new MedicalViewerScale(); 
   scale.Scale = 200; 
   medicalViewer.SetActionProperties(MedicalViewerActionType.Scale, scale, 0); 
   myForm.ShowDialog(); 
}

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

See Also

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