GetActionProperties Method

Summary
Gets the current properties for the specified action.
Syntax
C#
C++/CLI
            public: 
MedicalViewerBaseAction^ GetActionProperties(  
   MedicalViewerActionType actionType 
)  

Parameters

actionType
The specified action.

Return Value

A MedicalViewerBaseAction that contains the retrieved properties.

Remarks

To set the properties for the specified action, call the SetActionProperties method.

Example
C#
using Leadtools; 
using Leadtools.Codecs; 
using Leadtools.MedicalViewer; 
 
public void MedicalViewerAlphaExample1() 
{ 
   MedicalViewerForm myForm = GetMedicalControl(); 
   MedicalViewer medicalViewer = myForm.Viewer; 
   MedicalViewerMultiCell cell = (MedicalViewerMultiCell)(medicalViewer.Cells[0]); 
 
   MedicalViewerWindowLevel windowLevel = (MedicalViewerWindowLevel)cell.GetActionProperties(MedicalViewerActionType.WindowLevel, 0); 
 
   switch (windowLevel.LookupTableType) 
   { 
      case MedicalViewerLookupTableType.Exponential: 
      case MedicalViewerLookupTableType.Logarithmic: 
      case MedicalViewerLookupTableType.Sigmoid: 
         MedicalViewerAlpha alpha = (MedicalViewerAlpha)cell.GetActionProperties(MedicalViewerActionType.Alpha, 0); 
         alpha.Alpha += 100; 
         cell.SetActionProperties(MedicalViewerActionType.Alpha, alpha, 0); 
         alpha.Dispose(); 
         break; 
      default: 
         break; 
   } 
   windowLevel.Dispose(); 
   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.