MedicalViewerCellPosition Class

Summary
Represents a class that is used to indicate the row and column position of the cell inside the Leadtools.MedicalViewer control.
Syntax
C#
C++/CLI
public class MedicalViewerCellPosition 
            public ref class MedicalViewerCellPosition  
Example

This example shows statistics about the medical viewer and the first cell.

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.