ExportPage Example for Visual Basic

Private Sub Command3_Click()
   Dim nRet As Long
   
   nRet = RasterDoc.ExportPage (LEADRasterView1.Raster, 0) 
   If nRet = 0 Then
      MsgBox "The engine exported the specified page"
   Else
      MsgBox "The engine couldn't export the specified page"
   End If
End Sub