←Select platform

Scale Property

Summary

Gets or sets the value that indicates the scaling factor, given as a percentage.

Syntax

C#
VB
C++
public int Scale { get; set; } 
  
Public Property Scale As Integer 
             
            public: 
property int Scale { 
   int get(); 
   void set (    int ); 
} 
             

Property Value

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

Example

This example changes the Scale of an image

C#
VB
using Leadtools; 
using Leadtools.Codecs; 
using Leadtools.MedicalViewer; 
 
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(); 
} 
Imports Leadtools 
Imports Leadtools.Codecs 
Imports Leadtools.MedicalViewer 
 
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 

Requirements

Target Platforms

Help Version 19.0.2017.10.27
Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.MedicalViewer Assembly