Leadtools.MedicalViewer Namespace : MedicalViewerScale Class |
public class MedicalViewerScale : MedicalViewerCommonActions, System.IDisposable
'Declaration Public Class MedicalViewerScale Inherits MedicalViewerCommonActions Implements System.IDisposable
'Usage Dim instance As MedicalViewerScale
public sealed class MedicalViewerScale : IClosable //In WinRT the IDisposable interface is replaced by IClosable
function Leadtools.MedicalViewer.MedicalViewerScale()
public ref class MedicalViewerScale : public MedicalViewerCommonActions, System.IDisposable
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:
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
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(); }
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2