The GetCellImage() Method is available as an add-on to the LEADTOOLS Medical Imaging toolkits.
Returns a printable version of the cell.
Syntax
Visual Basic (Declaration) | |
---|
Overloads Public Function GetCellImage() As Image |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As MedicalViewerCell
Dim value As Image
value = instance.GetCellImage() |
C# | |
---|
public Image GetCellImage() |
C++/CLI | |
---|
public:
Image^ GetCellImage(); |
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