SetActionProperties Method

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

Parameters

actionType
The action for which the properties are being set.

actionProperties
The properties to be set.

subCellIndex
The zero-based index of the sub-cell for which the properties are being set.

Remarks
Example
C#
using Leadtools; 
using Leadtools.Codecs; 
using Leadtools.MedicalViewer; 
 
public void MedicalViewerAlphaExample4() 
{ 
   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 = new MedicalViewerAlpha(100, 100, false, Cursors.SizeWE); 
         if (cell.IsActionAdded(MedicalViewerActionType.Alpha)) 
            cell.SetActionProperties(MedicalViewerActionType.Alpha, alpha, 0); 
         alpha.Dispose(); 
         break; 
      default: 
         break; 
   } 
   windowLevel.Dispose(); 
   myForm.ShowDialog(); 
} 
Requirements

Target Platforms

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

Leadtools.MedicalViewer Assembly

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