 | PdfiumFPDFSTREAM_ReadRawData Method |
Reads a specified number of bytes from the current stream from specified position.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static bool FPDFSTREAM_ReadRawData(
IntPtr handle,
int startPos,
int count,
byte[] buf
)
Public Shared Function FPDFSTREAM_ReadRawData (
handle As IntPtr,
startPos As Integer,
count As Integer,
buf As Byte()
) As Boolean
public:
static bool FPDFSTREAM_ReadRawData(
IntPtr handle,
int startPos,
int count,
array<unsigned char>^ buf
)
static member FPDFSTREAM_ReadRawData :
handle : IntPtr *
startPos : int *
count : int *
buf : byte[] -> bool
public static boolean FPDFSTREAM_ReadRawData(
IntPtr handle,
int startPos,
int count,
byte[] buf
)
Patagames.Pdf.Pdfium.FPDFSTREAM_ReadRawData = function(handle, startPos, count, buf);
Parameters
- handle IntPtr
- Handle to a stream object
- startPos Int32
- The ofset from the begining of stream
- count Int32
- The number of bytes to read from stream
- buf Byte
- An array of readed bytes.
Return Value
BooleanTrue for successfull, false otherwise.
See Also