 | IsDataAvailableCallback Delegate |
Report whether the specified data section is available. A section is available only if all bytes in the section is available.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic delegate bool IsDataAvailableCallback(
FX_FILEAVAIL pThis,
IntPtr offset,
IntPtr size
)
Public Delegate Function IsDataAvailableCallback (
pThis As FX_FILEAVAIL,
offset As IntPtr,
size As IntPtr
) As Boolean
public delegate bool IsDataAvailableCallback(
FX_FILEAVAIL^ pThis,
IntPtr offset,
IntPtr size
)
type IsDataAvailableCallback =
delegate of
pThis : FX_FILEAVAIL *
offset : IntPtr *
size : IntPtr -> bool
/** @delegate */
public delegate boolean IsDataAvailableCallback(
FX_FILEAVAIL pThis,
IntPtr offset,
IntPtr size
)
function(pThis, offset, size);
Parameters
- pThis FX_FILEAVAIL
- Pointer to the interface structure itself.
- offset IntPtr
- The offset of the data section in the file.
- size IntPtr
- The size of the data section
Return Value
Booleantrue means the specified data section is available.
RemarksRequired: Yes. Called by Pdfium SDK to check whether the data section is ready.
See Also