Extractor::EOF property¶
The EOF property is only valid for documents where the SupportsText property is TRUE. The EOF property will be set to TRUE when no more text can be extracted from the document with calls to GetText. If the document needs to be re-read, call Close and Open first.
bool EndOfStream { get; }
boolean getEOF() throws IGRException;
@property
def EOF(self) -> bool
bool getEOF() const;
[propget] HRESULT EOF([out, retval] VARIANT_BOOL *result);
Return Value¶
bool
: Indicates if more text can be read from the file.
Sample Code¶
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
|
1 2 3 4 5 6 7 8 9 10 |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
|
Additional Information¶
Accessing this property will open the document. Call the Close method when finished.