←Select platform

GetCellImage() Method

Summary

Returns a printable version of the cell.

Syntax

C#
VB
C++
public Image GetCellImage()
Public Overloads Function GetCellImage() As Image
public: 
Image^ GetCellImage(); 

Return Value

System.Drawing.Image object which is the printable version of the cell.

Remarks
  • This method is useful whenever the user needs to save the image along with the annotations, tags, border, rulers and anything that has been drawn on the cell.
  • The user can save, print or copy the returned image.
  • For more information about the cell, refer to Medical Viewer Cells.
Example

C#
VB
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; 
 
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

Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.
Leadtools.MedicalViewer Assembly
Click or drag to resize