ADO » Stream » SkipLine

Version: 2.5

Syntax:
streamobject.SkipLine

Skips all of the characters on one entire line, including the next line separator, while reading a text stream.

The SkipLine method is used to skip over all characters up to and including the next line separator in a text data Stream object. If there is no line separator between the current position and EOS, the new current position simply becomes the EOS. By default, this method searches for an adCRLF line separator which is a carriage return/line feed.

You can use the LineSeparator property to set or return a LineSeparatorEnum value that specifies which binary character to use as the line separator in a text Stream object.

Examples

Code:
objStream.SkipLine

See Also: