docs

Home All functions Legacy functions Categories

vuSetSimpleHTMLFooterImage()

Clarion prototype

Prototype: vuSetSimpleHTMLFooterImage(*CSTRING InFooterImageFile), SIGNED, PROC, PASCAL, RAW, NAME(‘vuSetSimpleHTMLFooterImage’)

Sets the optional footer image file used by Simple HTML mode.

Parameters

Name Description
InFooterImageFile Image file path or file name to place below the body content. Pass a blank string to clear it.

Example (Clarion)

rc          LONG
footerImage CSTRING(260)

footerImage = 'C:\Images\CompanyFooter.png'

rc = vuSetSimpleHTMLFooterImage(footerImage)
IF rc = 0
  MESSAGE('Footer image was not accepted: ' & vuMailLastError())
END

Notes

Home All functions Legacy functions Categories