IsLicensed
Purpose
Returns True/False indicating whether HomeSeer has been fully licensed.
Parameters
None
Returns
Return value: license status
Type: boolean
Example
Sample Code
VB
sub main()
If hs.IsLicensed then
hs.WriteLog "Info","HomeSeer is licensed, thank you."
else
hs.WriteLog "Info","This copy of HomeSeer is not currently licensed."
end if
end sub