public void SetActionProperties(
MedicalViewerActionType actionType,
MedicalViewerBaseAction actionProperties
)
public:
void SetActionProperties(
MedicalViewerActionType actionType,
MedicalViewerBaseAction^ actionProperties
)
actionType
The action for which the properties are being set.
actionProperties
The properties to be set.
To retrieve the properties for a specific action call the GetActionProperties method. For more information, refer to Applying Actions and Creating a Bitmap Region.
using Leadtools;
using Leadtools.Codecs;
using Leadtools.MedicalViewer;
public void MedicalViewerMagnifyGlassExample()
{
MedicalViewerForm myForm = GetMedicalControl();
MedicalViewer medicalViewer = myForm.Viewer;
MedicalViewerMultiCell cell = (MedicalViewerMultiCell)(medicalViewer.Cells[0]);
MedicalViewerMagnifyGlass magnifyGlass = new MedicalViewerMagnifyGlass();
magnifyGlass.Border3D = true;
magnifyGlass.Elliptical = false;
magnifyGlass.Height = 200;
magnifyGlass.Width = 200;
magnifyGlass.Zoom = 400;
magnifyGlass.Crosshair = MedicalViewerCrosshairStyle.Invert;
magnifyGlass.BorderSize = 3;
magnifyGlass.PenColor = Color.FromArgb(255, 0, 0);
cell.SetActionProperties(MedicalViewerActionType.MagnifyGlass, magnifyGlass);
myForm.ShowDialog();
}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document