Returns a printable version of the cell.
Syntax
Parameters
- exploded
- true to print the sub-cell, but after scaling it up to fit the entire cell area.
- features
- An Enumerated MedicalViewerCellImageFeatures value that lets you select which part of the cell besides the image to draw.
Return Value
System.Drawing.Image object which is the printable version of the cell.
Example
| Visual Basic | Copy Code |
|---|
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 |
| C# | Copy Code |
|---|
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";
} |
Remarks
Requirements
Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7
See Also