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.
Deletes lines from the Infolog buffer.
Syntax
public void clear([int linesLeft])
Run On
Called
Parameters
- linesLeft
Type: int
Number of lines to leave in the buffer; optional.
Remarks
Do not call this with method with the default value of zero unless another process has not put information into the Infolog.
Examples
Use this pattern to clear the Infolog cache:
int line = Global::infologLine();
try
{
//
}
catch
{
infolog.clear(line);
}