Position Property

Summary
Gets or sets the row/column position of the cell.
Syntax
C#
C++/CLI
public MedicalViewerCellPosition Position { get; } 
            public: 
property MedicalViewerCellPosition^ Position { 
   MedicalViewerCellPosition^ get(); 
} 

Property Value

The MedicalViewerCellPosition object that represents the row and column position of the cell.

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 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.