 | IsDataAvailableCallback_static 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: 5.1.3
Syntaxpublic delegate bool IsDataAvailableCallback_static(
IntPtr pThis,
IntPtr offset,
IntPtr size
)
Public Delegate Function IsDataAvailableCallback_static (
pThis As IntPtr,
offset As IntPtr,
size As IntPtr
) As Boolean
public delegate bool IsDataAvailableCallback_static(
IntPtr pThis,
IntPtr offset,
IntPtr size
)
type IsDataAvailableCallback_static =
delegate of
pThis : IntPtr *
offset : IntPtr *
size : IntPtr -> bool/** @delegate */
public delegate boolean IsDataAvailableCallback_static(
IntPtr pThis,
IntPtr offset,
IntPtr size
)
function(pThis, offset, size);
Parameters
- pThis IntPtr
- 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