Products | Support | Email a link to this topic. | Send comments on this topic. | Back to Introduction - All Topics | Help Version 19.0.12.8
|
Leadtools.MedicalViewer Namespace > MedicalViewerScale Class : Scale Property |
This example changes the Scale of an image
Imports Leadtools Imports Leadtools.Codecs Imports Leadtools.MedicalViewer <TestMethod()> _ 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
using Leadtools; using Leadtools.Codecs; using Leadtools.MedicalViewer; [TestMethod] 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(); }