Error processing SSI file
LEADTOOLS Medical (Leadtools.MedicalViewer assembly)

Show in webframe

MedicalViewerScale Class






Members 
Represents the class that contains the properties of the scale action.
Object Model
Syntax
public class MedicalViewerScale : MedicalViewerCommonActions, System.IDisposable 
'Declaration   Public Class MedicalViewerScale    Inherits MedicalViewerCommonActions    Implements System.IDisposable 
'Usage   Dim instance As MedicalViewerScale
public ref class MedicalViewerScale : public MedicalViewerCommonActions, System.IDisposable 
Remarks

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:

Example

This example changes the Scale of an image

Copy Code  
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();
}
Requirements

Target Platforms

See Also

Reference

MedicalViewerScale Members
Leadtools.MedicalViewer Namespace

Error processing SSI file
Leadtools.MedicalViewer requires a Medical Imaging license and unlock key. For more information, refer to: Imaging Pro/Document/Medical Features