back to Table of Contents


GotoBufMark (function)

This function will set the current buffer (cursor) position to the position tracked in the marker with the given ID. This function is in that the exact counterpart of SetBufMark().

If you not wanna go to the exact position of the marker, but just want to use it as base for a jump with a certain displacement, then you may use SeekBuf() instead, specifying your desired displacement and give the marker ID as the mode parameter.


SYNTAX:

err% = GotoBufMark% (buf$(), markID%)

INPUTS:

buf$() (STRING array)

markID% (INTEGER)


RESULT:

err% (INTEGER)


back to Table of Contents