IsTrialElapsed

Top  Previous  Next

Gets the value indicating the status of the trial period - whether it has elapsed or not.

 

function IsTrialElapsed():Boolean;

 

Parameters

 

 No parameters.

 

Return value

 

 Returns True if trial is over.

 Returns False if trial is not over or if software is registered.

 

Requirements

 

 Library: IntelliProtectorDummy.lib

 Source: UnitIntelliProtector.pas

 

Example

 

uses UnitIntelliProtector;

//...

 

procedure TFormMain.CheckTrial();

begin

 if IntelliProtector.IsTrialElapsed() then

   lTrialMode.Caption := 'ON';

 else

   lTrialMode.Caption := 'OFF';

end;

 

 

 





Copyright © 2015 IntelliProtector.com