|
|
|
|
version 2003
PA_SendHTML (params; webData; HTMLbuffer; BufferLen)
| Parameter | Type | Description | |
| params | PA_PluginParameters | → | Parameters received in PluginMain |
| webData | void* | → | Pointer to any private object |
| HTMLbuffer | char* | → | Pointer to HTML data to send |
| BufferLen | long | → | Length of the HTML buffer to send |
Description
The command
PA_SendHTML
sends HTML that can represent your plug-in area when it is displayed by a browser. You can pass in
webData
any private data that can help you to dispose of the HTML buffer once 4D has finished using it. You will receive a
eAE_WebDisposeData
event telling you that 4D has finished using your HTML buffer and that you can now dispose of it.
params
is the
PA_PluginParameters
the plug-in received in its
PluginMain
routine.