docs

Home All functions Legacy functions Categories

vuSetImageSize()

vuSetImageSize(LONG InWidth,LONG InHeight),LONG,PROC,PASCAL,RAW,NAME('vuSetImageSize')

Purpose

Sets legacy runtime image-size hints for compatibility with older vuMail workflows.

Parameters

Parameter Type Description
InWidth LONG Width hint value. Pass 0 to leave the current stored width hint unchanged.
InHeight LONG Height hint value. Pass 0 to leave the current stored height hint unchanged.

Return value / error codes

Notes

Example (Clarion)

MAP
  MODULE('vuMailKit.dll')
    vuSetImageSize(LONG InWidth,LONG InHeight),LONG,PROC,PASCAL,RAW,NAME('vuSetImageSize')
  END
END

rc LONG

rc = vuSetImageSize(640, 480)
IF rc <> 1
  MESSAGE('vuSetImageSize failed: ' & vuMailLastError())
END
Home All functions Legacy functions Categories