Returns the unique License Id encoded into this license.

This is unique to the license, but each account could have multiple licenses.

Declaration: property LicenseId: string

An example of its use follows.

procedure OnMapEvent(var Value:Variant);
begin
//The LicenseID as a string
Value := License.LicenseId;
end;

The following code will display the LicenseID.

procedure ScriptEvent(var Value:Variant);
var
WhoIt : string;
begin
WhoIt := License.LicenseId;
LogInfo('The LicenseID is '+WhoIt);
LogInfo('');
end;