[Overview][Types][Classes][Index] |
Set stream position
Source position: ascii85.pp line 71
public function TASCII85DecoderStream.Seek( |
aOffset: LongInt; |
aOrigin: Word |
):LongInt; override; |
const aOffset: Int64; |
aOrigin: TSeekOrigin |
):Int64; override; overload; |
aOffset |
|
Offset from current position (should be zero). |
aOrigin |
|
Origin for seek operation (should be soCurrent). |
new position in stream.
aOffset |
|
Offset from current position (should be zero). |
aOrigin |
|
Origin for seek operation (should be soCurrent). |
Seek sets the stream position. It only allows to set the position to the current position of this file, and returns then the current position. All other arguments will result in an EReadError exception.
In case the arguments are different from soCurrent and 0, an EReadError exception will be raised.
|
Read data from stream |