public class MedicalViewerLayoutPosition
public ref class MedicalViewerLayoutPosition
The position is represented by four dimensionless floating point values, in the range 0.0 to 1.0. The Lower left hand position represents the (0.0,0.0).
using Leadtools.MedicalViewer;
using Leadtools.Codecs;
using Leadtools;
public void MedicorViewerLayoutExample2()
{
MedicalViewerForm myForm = GetMedicalControl();
MedicalViewer medicalViewer = myForm.Viewer;
float[] l = { 0.06F, 0.55F };
float[] t = { 0.75F, 0.75F };
float[] r = { 0.45F, 0.94F };
float[] b = { 0.25F, 0.25F };
//
// Add some cells to the viewer
//
for (int i = 0; i < l.Length; i++)
{
MedicalViewerMultiCell cell = new MedicalViewerMultiCell();
try
{
cell.LayoutPosition = new MedicalViewerLayoutPosition(l[i], t[i], r[i], b[i]);
cell.FitImageToCell = true;
medicalViewer.Cells.Add(cell);
}
catch (Exception e)
{
MessageBox.Show(e.Message);
}
}
//
// Save the layout
//
FileInfo f = new FileInfo("layout.xml");
FileStream stream = f.Create();
medicalViewer.SaveLayout(stream);
//
// Reload the cells
//
medicalViewer.Cells.Clear();
stream.Seek(0, SeekOrigin.Begin);
medicalViewer.LoadLayout(stream);
//
// Show only if created in layout mode
//
if (medicalViewer.GridMode == false)
myForm.ShowDialog();
}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document