function
Library: File system utilities (OMVFS legacy)
Include: omvfs.xin |
Returns: An integer representing the current cursor position. |
define external integer function vfsCursorPosition value vfsFile file
Argument definitions
Use vfsCursorPosition to get the current position of the cursor in a vfsFile object. The byte where the cursor is currently located is returned as an integer.
You must include the following line at the beginning of your OmniMark program:
include "omvfs.xin"
file must be opened using vfsOpen (else external exception VFS200).
External exception VFS300 is thrown for any general OS operation failure. The text accompanying the exception will contain details on the reason for the failure.
Find the current cursor position in the open file myscript.xom.
include "omvfs.xin" process local vfsFile myFile local integer cursorAt . . . set myFile to vfsOpen "/programs/myscript.xom" . . . set cursorAt to vfsCursorPosition myFile