Click or drag to resize

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.Pdf
Assembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntax
public delegate bool IsDataAvailableCallback(
	FX_FILEAVAIL pThis,
	IntPtr offset,
	IntPtr 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

Boolean
true means the specified data section is available.
Remarks
Required: Yes. Called by Pdfium SDK to check whether the data section is ready.
See Also