ImageGear23.Formats.Pdf Assembly > ImageGear.Formats.PDF Namespace > ImGearPDFStream Class : Read Method |
itemCount
multiplied by itemSize
, unless an EOF is encountered first.The relative values of itemCount
and itemSize
really do not matter; the only thing that matters is their product. It is often convenient to set itemSize
to 1, so that itemCount
is the number of bytes to read.
'Declaration Public Function Read( _ ByVal itemCount As Integer, _ ByVal itemSize As Integer _ ) As Byte()
'Usage Dim instance As ImGearPDFStream Dim itemCount As Integer Dim itemSize As Integer Dim value() As Byte value = instance.Read(itemCount, itemSize)
public: array<byte>^ Read( int itemCount, int itemSize )
itemCount
multiplied by itemSize
, unless an EOF is encountered first.The relative values of itemCount
and itemSize
really do not matter; the only thing that matters is their product. It is often convenient to set itemSize
to 1, so that itemCount
is the number of bytes to read.