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
- This image is inserted below the body area inside the generated HTML wrapper.
- Use vuResetSimpleHTML if you want to clear all Simple HTML state at once.