ActionCount Property

Summary
Gets the number of actions that have been added to the MedicalViewer.
Syntax
C#
C++/CLI
public int ActionCount { get; } 
            public: 
property int ActionCount { 
   int get(); 
} 

Property Value

The number of actions that have been added to the MedicalViewer.

Remarks

For more information, refer to Applying Actions.

Example
C#
using Leadtools; 
using Leadtools.Codecs; 
using Leadtools.MedicalViewer; 
 
 
void GetStatisticalInformation(MedicalViewerMultiCell cell) 
{ 
   Console.WriteLine("Number of actions that have been added to the medical viewer = " + cell.ActionCount); 
   Console.WriteLine("The coordinates of the first cell are : " + cell.Location.X + ", " + cell.Location.Y + ", " + cell.Size.Width + ", " + cell.Size.Height); 
   Console.WriteLine("The Position in term of row / columns of the first cell is : " + cell.Position.Row + ", " + cell.Position.Column); 
} 
 
 
public void MedicalViewerStatisticsExample() 
{ 
   MainForm2 form = new MainForm2(); 
   GetStatisticalInformation(((MedicalViewerMultiCell)form._medicalViewer.Cells[0])); 
   form.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.