Difference between revisions of "MC-Basic:TELL"

From SoftMC-Wiki
Jump to: navigation, search
 
(6 intermediate revisions by one other user not shown)
Line 1: Line 1:
 +
{{Languages|MC-Basic:TELL}}
 
{{MC-Basic
 
{{MC-Basic
 
|SHORT FORM=
 
|SHORT FORM=
Line 44: Line 45:
  
 
|SEE ALSO=
 
|SEE ALSO=
* [[Axystems:MC-Basic:OPEN FILE|OPEN FILE]]
+
* [[MC-Basic:OPEN FILE|OPEN FILE]]
 
* [[MC-Basic:CLOSE|CLOSE]]
 
* [[MC-Basic:CLOSE|CLOSE]]
 
* [[MC-Basic:INPUT$|INPUT$]]
 
* [[MC-Basic:INPUT$|INPUT$]]
* [[Axystems:MC-Basic:LOC|LOC]]
+
* [[MC-Basic:LOC|LOC]]
* [[Axystems:MC-Basic:PRINT HASH|PRINT HASH]]
+
* [[MC-Basic:PRINT HASH|PRINT HASH]]
* [[Axystems:MC-Basic:SEEK|SEEK]]
+
* [[MC-Basic:SEEK|SEEK]]
  
[[Category:Axystems:MC-Basic:File Management|TELL]]
+
[[Category:MC-Basic:File Management|TELL]]
 
}}
 
}}

Latest revision as of 09:02, 2 May 2017

Language: English  • 中文(简体)‎

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

See Also