Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Copies lines from the Infolog buffer.
Syntax
public container copy(int from, int to)
Run On
Called
Parameters
- from
Type: int
The first line to copy.
- to
Type: int
The last line to copy.
Return Value
Type: container
Container that contains the Infolog lines between from and to.
Examples
The following example uses the copy method to copy the content of the Infolog into a log.
boolean validateRecord()
{
boolean ok = true;
ok = intrastat.validateRecord();
if (ok)
intrastat.log = '';
else
{
intrastat.log = Info::infoCon2Str(
infolog.copy(infoLogCounter+1,infolog.num()));
infoLogCounter = infolog.num();
errorFound = true;
}
intrastat.update();
return ok;
}
See Also
xInfo.copy Method