Metoda ADO CopyTo


❮ Dokončete referenci objektu streamu

Metoda CopyTo se používá ke zkopírování zadaného počtu znaků nebo bajtů z otevřeného objektu Stream do jiného otevřeného objektu Stream.

Typ dvou objektů Stream by měl být stejný. Textové objekty Stream však lze zkopírovat do binárních objektů Stream, ale ne naopak, a vlastnost CharSet cílového objektu Stream se může lišit od zdrojového objektu Stream. 

Syntax

objStream.CopyTo dest,numchars

Parameter Description
dest Required. Where to copy the Stream (contains a reference to an open Stream object)
numchars Optional. An integer that specifies the number of characters or bytes to be copied from the current position in the source Stream to the destination Stream. Default is -1 (will copy all data from the current position to EOS)

Note: If the specified number is greater than the available number of bytes/characters until EOS, then only bytes/characters from the current position to EOS are copied


❮ Dokončete referenci objektu streamu