Error processing SSI file
LEADTOOLS Medical (Leadtools.MedicalViewer assembly)

Show in webframe

GetCellImage() Method






Returns a printable version of the cell.
Syntax
public Image GetCellImage()
'Declaration   Public Overloads Function GetCellImage() As Image
'Usage   Dim instance As MedicalViewerCell Dim value As Image   value = instance.GetCellImage()
public: Image^ GetCellImage();

Return Value

System.Drawing.Image object which is the printable version of the cell.
Remarks
Example
Copy Code  
Imports Leadtools
Imports Leadtools.Codecs
Imports Leadtools.MedicalViewer
Imports Leadtools.ImageProcessing.Core

<TestMethod()> _
Public Sub MedicalViewerSaveCellExample()
   Dim myForm As MedicalViewerForm = GetMedicalControl()
   Dim medicalViewer As MedicalViewer = myForm.Viewer
   Dim myImage As Image = (CType(medicalViewer.Cells(0), MedicalViewerMultiCell)).GetCellImage()
   myImage.Save(Path.Combine(LEAD_VARS.ImagesDir, "FirstCell.bmp"))
   myImage.Dispose()
   myForm.ShowDialog()
End Sub

Public NotInheritable Class LEAD_VARS
Public Const ImagesDir As String = "C:\Users\Public\Documents\LEADTOOLS Images"
End Class
using Leadtools;
using Leadtools.Codecs;
using Leadtools.MedicalViewer;
using Leadtools.ImageProcessing.Core;

[TestMethod]
public void MedicalViewerSaveCellExample()
{
   MedicalViewerForm myForm = GetMedicalControl();
   MedicalViewer medicalViewer = myForm.Viewer;
   Image myImage = ((MedicalViewerMultiCell)(medicalViewer.Cells[0])).GetCellImage();
   myImage.Save(Path.Combine(LEAD_VARS.ImagesDir,"FirstCell.bmp"));
   myImage.Dispose();
   myForm.ShowDialog();
}

static class LEAD_VARS
{
public const string ImagesDir = @"C:\Users\Public\Documents\LEADTOOLS Images";
}
Requirements

Target Platforms

See Also

Reference

MedicalViewerCell Class
MedicalViewerCell Members
Overload List

Error processing SSI file
Leadtools.MedicalViewer requires a Medical Imaging license and unlock key. For more information, refer to: Imaging Pro/Document/Medical Features