Difference between revisions of "MC-Basic:TELL"
Line 44: | Line 44: | ||
|SEE ALSO= | |SEE ALSO= | ||
− | * [[ | + | * [[MC-Basic:OPEN FILE|OPEN FILE]] |
* [[MC-Basic:CLOSE|CLOSE]] | * [[MC-Basic:CLOSE|CLOSE]] | ||
* [[MC-Basic:INPUT$|INPUT$]] | * [[MC-Basic:INPUT$|INPUT$]] |
Revision as of 08:39, 22 May 2014
Returns current file pointer, offset from the beginning of the file. Value has meaning only for Seek command to move file pointer within a file.
Syntax
?Tell (# <DeviceHandle> )
Availability
Versions 4.1.0 and higher
Type
<DeviceHandle>: Long
<Returned value> : Maxlong
Range
<DeviceHandle>: 1 to 255
<Returned value> : Maxlong
Scope
Task or Terminal
Examples
-->Open "File1.PRG" Mode="r" As #1
-->seek(#1,8)
-->?tell(#1)
8