PdfTextReaderRead Method (Char, Int32, Int32) |
Reads a specified maximum number of characters from the current reader and writes the data to a buffer, beginning at the specified index.
Namespace:
Atalasoft.Pdf.TextExtract
Assembly:
Atalasoft.dotImage.PdfReader (in Atalasoft.dotImage.PdfReader.dll) Version: 11.4.0.9.0.377 (.NET 4.5.2, x86)
Syntax public override int Read(
char[] buffer,
int index,
int count
)
Public Overrides Function Read (
buffer As Char(),
index As Integer,
count As Integer
) As Integer
Parameters
- buffer
- Type: SystemChar
When this method returns, contains the specified character array with the values between index
and (index + count - 1) replaced by the characters read from the current source.
- index
- Type: SystemInt32
The position in buffer at which to begin writing.
- count
- Type: SystemInt32
The maximum number of characters to read.
If the end of the reader is reached before the specified number of characters is read into the buffer, the method returns.
Return Value
Type:
Int32
The number of characters that have been read. The number will be less than or equal to
count, depending on whether
the data is available within the reader. This method returns 0 (zero) if it is called when no more characters are left to read.
Exceptions Exception | Condition |
---|
ArgumentNullException | Throws when buffer is a . |
ArgumentException | Throws when the buffer length minus index is less than count. |
ArgumentOutOfRangeException | Throws when index or count is negative. |
ObjectDisposedException | Throws when the PdfTextReader is closed. |
IOException | Throws when an I/O error occurs. |
See Also