DIAdem Help

Method: ExportToImage for 3DTable

  • Updated2024-09-12
  • 1 minute(s) read

Method: ExportToImage for 3DTable

Exports a 3D table from DIAdem REPORT to a graphics file.

Object.ExportToImage(FileName, ImageType)
Object3DTable
Object with this method
FileNameString
Specifies the path and the filename of the graphics file.
ImageTypeSpecifies the graphics file type.
Enumeration with the following selection terms:
1 eImageExportTypeEMFEMF file
2 eImageExportTypePNGPNG file
3 eImageExportTypeJPGJPG file
4 eImageExportTypeGIFGIF file
5 eImageExportTypeTIFTIF file

The following example exports each 3D table to a graphics file:

VBScriptPython

 

Dim oMyReportObj, oMyReportObjects, i
Report.Settings.ImageExport.PNG.BitsPerPixel = ePNGBitsPerPixelRGB24
Report.Settings.ImageExport.PNG.Height = 300
Report.Settings.ImageExport.PNG.UseRatio = True
i = 0
Set oMyReportObjects = Report.ActiveSheet.Objects
For Each oMyReportObj in oMyReportObjects
  If oMyReportObj.ObjectType = eReportObject3DTable Then
    Call oMyReportObj.ExportToImage(LayoutWritePath & "MyExportFile" & i, eImageExportTypePNG)
    i = i+1
  End If
Next