 | WriteBlockCallback Delegate |
Output a block of data in your custom way.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic delegate bool WriteBlockCallback(
FPDF_FILEWRITE pThis,
byte[] buffer,
int buflen
)
Public Delegate Function WriteBlockCallback (
pThis As FPDF_FILEWRITE,
buffer As Byte(),
buflen As Integer
) As Boolean
public delegate bool WriteBlockCallback(
FPDF_FILEWRITE^ pThis,
array<unsigned char>^ buffer,
int buflen
)
type WriteBlockCallback =
delegate of
pThis : FPDF_FILEWRITE *
buffer : byte[] *
buflen : int -> bool
/** @delegate */
public delegate boolean WriteBlockCallback(
FPDF_FILEWRITE pThis,
byte[] buffer,
int buflen
)
function(pThis, buffer, buflen);
Parameters
- pThis FPDF_FILEWRITE
- Pointer to the structure itself
- buffer Byte
- Pointer to a buffer to output
- buflen Int32
- The size of the buffer
Return Value
BooleanShould be non-zero if successful, zero for error
Remarks
See Also