 | Doc_submitForm_callback Delegate |
Send the form data to a specified URL.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic delegate void Doc_submitForm_callback(
IPDF_JSPLATFORM pThis,
byte[] formData,
int length,
string Url
)
Public Delegate Sub Doc_submitForm_callback (
pThis As IPDF_JSPLATFORM,
formData As Byte(),
length As Integer,
Url As String
)
public delegate void Doc_submitForm_callback(
IPDF_JSPLATFORM^ pThis,
array<unsigned char>^ formData,
int length,
String^ Url
)
type Doc_submitForm_callback =
delegate of
pThis : IPDF_JSPLATFORM *
formData : byte[] *
length : int *
Url : string -> unit
/** @delegate */
public delegate void Doc_submitForm_callback(
IPDF_JSPLATFORM pThis,
byte[] formData,
int length,
String Url
)
function(pThis, formData, length, Url);
Parameters
- pThis IPDF_JSPLATFORM
- Pointer to the interface structure itself
- formData Byte
- Pointer to the data buffer to be sent.
- length Int32
- The size,in bytes, of the buffer pointed by formData parameter.
- Url String
- The URL to send to.
RemarksRequired: Yes.
See Also