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 |
To set the properties of the scale action, call the MedicalViewerBaseCell.SetActionProperties method. To retrieve the properties call the MedicalViewerBaseCell.GetActionProperties method.
The mouse controls the actions as follows:
This example changes the Scale of an image
Imports Leadtools Imports Leadtools.Codecs Imports Leadtools.MedicalViewer <TestMethod()> _ Public Sub MedicalViewerScaleExample1() Dim myForm As MedicalViewerForm = GetMedicalControl() Dim medicalViewer As MedicalViewer = myForm.Viewer Dim cell As MedicalViewerMultiCell = CType(medicalViewer.Cells(0), MedicalViewerMultiCell) Dim scale As MedicalViewerScale = CType(cell.GetActionProperties(MedicalViewerActionType.Scale, 0), MedicalViewerScale) scale.Scale *= 2 cell.SetActionProperties(MedicalViewerActionType.Scale, scale, 0) scale.Dispose() myForm.ShowDialog() End Sub
using Leadtools; using Leadtools.Codecs; using Leadtools.MedicalViewer; [TestMethod] public void MedicalViewerScaleExample1() { MedicalViewerForm myForm = GetMedicalControl(); MedicalViewer medicalViewer = myForm.Viewer; MedicalViewerMultiCell cell = (MedicalViewerMultiCell)(medicalViewer.Cells[0]); MedicalViewerScale scale = (MedicalViewerScale)cell.GetActionProperties(MedicalViewerActionType.Scale, 0); scale.Scale *= 2; cell.SetActionProperties(MedicalViewerActionType.Scale, scale, 0); scale.Dispose(); myForm.ShowDialog(); }