PWB Extensions Help (ext.hlp) (
Table of Contents;
Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software,
purely for historical purposes.
If you're looking for up-to-date documentation, particularly for programming,
you should not rely on the information found here, as it will be woefully
out of date.
CopyLine
◄Up► ◄Contents► ◄Index► ◄Back►
─────PWB Extensions─────────────────────────────────────────────────────────
Syntax: void CopyLine( PFILE pfSource, PFILE pfDest,
LINE yStart, LINE yEnd, LINE yDest );
See: CopyBox, CopyStream, PutLine, ◄Processing Text►
CopyLine can be used either to copy a group of lines from one file
to another or to insert blank lines.
The source and destination files are specified by <pfSource> and
<pfDest>. If <pfSource> is PNULL, one or more blank lines is
inserted, depending on the relative values of <yStart> and <yEnd>.
Otherwise, the lines from <yStart> to <yEnd>, inclusive, are copied
into the destination file directly before line <yDest>.
Do not confuse CopyLine with PutLine. PutLine replaces a line, but
does not affect the total number of lines. CopyLine inserts one or
more lines, which increases the length of the file.
The same file cannot serve as both source and destination.
If the copied lines have colors, they are copied with the text.
-♦-