Platforms to show: All Mac Windows Linux Cross-Platform
/DynaPDF/Letter/Web Letter
Function:
Required plugins for this example: MBS DynaPDF Plugin
You find this example project in your Plugins Download as a Xojo project file within the examples folder: /DynaPDF/Letter/Web Letter
This example is the version from Sun, 5th Nov 2022.
Function:
Required plugins for this example: MBS DynaPDF Plugin
You find this example project in your Plugins Download as a Xojo project file within the examples folder: /DynaPDF/Letter/Web Letter
This example is the version from Sun, 5th Nov 2022.
Project "Web Letter.xojo_binary_project"
Class App Inherits WebApplication
End Class
Class MyDynapdfMBS Inherits DynapdfMBS
EventHandler Function Error(ErrorCode as integer, ErrorMessage as string, ErrorType as integer) As integer
// output all messages on the console:
MessageBox str(ErrorCode)+": "+ErrorMessage
IgnoreWarnings = true
Return 0 // ignore
End EventHandler
EventHandler Function PageBreak(LastPosX as double, LastPosY as double, PageBreak as boolean) As integer
call endpage
call append
call SetPageCoords(kpcTopDown) // we use top down coordinates
call placeTemplate(Template, 0, 0, getpagewidth,getpageheight) // scale to fit
return 0
End EventHandler
Property IgnoreWarnings As Boolean
Property template As integer
End Class
FileTypes
Filetype text
Filetype icc
End FileTypes
End Project
The items on this page are in the following plugins: MBS DynaPDF Plugin.
