IsLogOpen function
Prototype: |
function IsLogOpen : boolean; |
|
Description: |
Checks whether the log is opened or not. |
|
Syntax: |
variable := IsLogOpen; |
|
Part |
Description |
|
variable |
variable declared as boolean |
|
Return value: |
true (if the log is opened) or false (the log is not opened) |
|
Example:
Var isOpen : boolean;
Begin
OpenLog('Processing summaries of measured trees');
isOpen := IsLogOpen;
if isOpen = false then
ShowMessage('Log is open')
else
ShowMessage('Log is not open');
End.
See also:
OpenLog; IsLogOpen; HideLog; ShowLog; LogWindowStayOnTop; MakeLogWindowStayOnTop; CloseLog;CloseLogWithDelay; Log; LogExt; LogTabStops
© 2024 IFER-Monitoring and Mapping Solutions