|
|
|
|
|
TrialVersion (Function) In french: VersionDémo Used to find out whether the current execution of the application is in "trial version" mode. Note Microsoft Store offers an execution mode corresponding to a trial version of the applications. This allows you to publish a free trial version of an application by limiting the access to some features via TrialVersion. IF TrialVersion() = True THEN
Info("This feature is not available in the trial version")
RETURN
END
Syntax
<Result> = TrialVersion()
<Result>: Boolean - True if the application is run in "trial version" mode,
- False otherwise.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|