SetActionProperties Method

Summary
Sets the current properties for the specified action.
Syntax
C#
C++/CLI
            public: 
void SetActionProperties(  
   MedicalViewerActionType actionType, 
   MedicalViewerBaseAction^ actionProperties 
)  

Parameters

actionType
The action for which the properties are being set.

actionProperties
The properties to be set.

Remarks

To retrieve the properties for a specific action call the GetActionProperties method. For more information, refer to Applying Actions and Creating a Bitmap Region.

Example
C#
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(); 
} 
Requirements

Target Platforms

Help Version 23.0.2024.2.29
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2024 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.MedicalViewer Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.