IsDebug function
Return to Introduction  Previous page  Next page
Unit
acUtils  

Declaration
function IsDebug: Boolean;  

Description
The IsDebug function returns True if program executed under standard debugger, or False if it is not in debug mode.  

Original code
function IsDebug: Boolean;  
begin  
  Result := DebugHook <> 0;  
end;