This function returns status of the trial period.
Syntax
public static bool IsTrialElapsed()
Parameters
no parameters.
Return value
Returns true if trial period is expired.
Returns false otherwise.
Requirements
File: ItpLibraryNetWrapper.cs
Namespace: ItpLibraryNetClient;
Example
private
void
InitControls()
{
lIsTrialExpired.Text = ItpLibraryNetWrapper.IsTrialElapsed() ?
"yes"
:
"no"
;
}