Gets or sets the value that indicates the scaling factor, given as a percentage.
public int Scale { get; set; } Public Property Scale As Integer
Value that indicates the scaling factor, given in percentage. Default is 100.
This example changes the Scale of an image
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 LeadtoolsImports Leadtools.CodecsImports Leadtools.MedicalViewerPublic Sub MedicalViewerScaleExample2()Dim myForm As MedicalViewerForm = GetMedicalControl()Dim medicalViewer As MedicalViewer = myForm.ViewerDim scale As MedicalViewerScale = New MedicalViewerScale()Dim cell As MedicalViewerMultiCell = CType(medicalViewer.Cells(0), MedicalViewerMultiCell)scale.Scale = 200cell.SetActionProperties(MedicalViewerActionType.Scale, scale, 0)scale.Dispose()myForm.ShowDialog()End Sub
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document
