Metodo ADO CopyTo


❮ Riferimento completo all'oggetto Stream

Il metodo CopyTo viene utilizzato per copiare un numero specificato di caratteri o byte da un oggetto Stream aperto in un altro oggetto Stream aperto.

Il tipo dei due oggetti Stream dovrebbe essere lo stesso. Tuttavia, gli oggetti Stream di testo possono essere copiati in oggetti Stream binari, ma non viceversa, e la proprietà CharSet dell'oggetto Stream di destinazione può essere diversa dall'oggetto Stream di origine. 

Sintassi

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


❮ Riferimento completo all'oggetto Stream