Description
-
Sets the read/write pointer to a specified location.
Return Type
-
A Long value. New position of read/write
pointer.
Syntax
-
object.Seek (Offset,
Origin)
The Seek Method syntax has these parts:
| object |
An expression
evaluating to an object of type Blob. |
| Offset |
Required. A Long
value. Offset that the read/write pointer should be
moved to. |
| Origin |
Required. An Integer
value. Specifies how the pointer should move - from the
start of data (0), current location (1), or end of data
(2). |
Remarks
-
This is an internal object - YOU SHOULD NOT USE
IT DIRECTLY, unless you are 100% sure of what you're
doing.
The Seek method sets the read/write pointer to the specified
location.
|