Represents the class that contains the properties of the offset action.
public class MedicalViewerOffset : MedicalViewerCommonActions
Public Class MedicalViewerOffset
Inherits Leadtools.Medicalviewer.MedicalViewerCommonActions
Implements System.IDisposable
public ref class MedicalViewerOffset : public Leadtools.Medicalviewer.MedicalViewerCommonActions, System.IDisposable
To set the properties of the offset 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 offset of the image of the first cell
using Leadtools;
using Leadtools.Codecs;
using Leadtools.MedicalViewer;
public void MedicalViewerOffset1()
{
MedicalViewerForm myForm = GetMedicalControl();
MedicalViewer medicalViewer = myForm.Viewer;
MedicalViewerMultiCell cell = (MedicalViewerMultiCell)(medicalViewer.Cells[0]);
MedicalViewerOffset offset = (MedicalViewerOffset)cell.GetActionProperties(MedicalViewerActionType.Offset, 0);
offset.X += 50;
offset.Y += 50;
cell.SetActionProperties(MedicalViewerActionType.Offset, offset, 0);
offset.Dispose();
myForm.ShowDialog();
}
Imports Leadtools
Imports Leadtools.Codecs
Imports Leadtools.MedicalViewer
Public Sub MedicalViewerOffset1()
Dim myForm As MedicalViewerForm = GetMedicalControl()
Dim medicalViewer As MedicalViewer = myForm.Viewer
Dim cell As MedicalViewerMultiCell = CType(medicalViewer.Cells(0), MedicalViewerMultiCell)
Dim offset As MedicalViewerOffset = CType(cell.GetActionProperties(MedicalViewerActionType.Offset, 0), MedicalViewerOffset)
offset.X += 50
offset.Y += 50
cell.SetActionProperties(MedicalViewerActionType.Offset, offset, 0)
offset.Dispose()
myForm.ShowDialog()
End Sub
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET