Show / Hide Table of Contents

Class NSExtendedLicenseInfo

Syntax

Constructors

NSExtendedLicenseInfo()

Declaration
NSExtendedLicenseInfo

Methods

GetAccumulatedNextCheckDate()

Declaration
DateTime GetAccumulatedNextCheckDate()
Returns
Type Description
DateTime
Examples
NSExtendedLicenseInfo thing;
DateTime accumulatedNextCheckDate = thing.GetAccumulatedNextCheckDate();

GetCanBeActivated()

Declaration
Bool GetCanBeActivated()
Returns
Type Description
Bool
Examples
NSExtendedLicenseInfo thing;
Bool canBeActivated = thing.GetCanBeActivated();

GetCurrent()

Declaration
NSLicenseInfo GetCurrent()
Returns
Type Description
NSLicenseInfo
Examples
NSExtendedLicenseInfo thing;
NSLicenseInfo current = thing.GetCurrent();

GetExtendedModuleLicenses()

Declaration
NSExtendedModuleLicense[] GetExtendedModuleLicenses()
Returns
Type Description
NSExtendedModuleLicense[]
Examples
NSExtendedLicenseInfo thing;
NSExtendedModuleLicense[] extendedModuleLicenses = thing.GetExtendedModuleLicenses();

GetNew()

Declaration
NSLicenseInfo GetNew()
Returns
Type Description
NSLicenseInfo
Examples
NSExtendedLicenseInfo thing;
NSLicenseInfo new = thing.GetNew();

GetReason()

Declaration
String GetReason()
Returns
Type Description
String
Examples
NSExtendedLicenseInfo thing;
String reason = thing.GetReason();

SetAccumulatedNextCheckDate(DateTime)

Declaration
Void SetAccumulatedNextCheckDate(DateTime accumulatedNextCheckDate)
Parameters
Type Name Description
DateTime accumulatedNextCheckDate
Returns
Type Description
Void
Examples
NSExtendedLicenseInfo thing;
DateTime accumulatedNextCheckDate;
thing.SetAccumulatedNextCheckDate(accumulatedNextCheckDate);

SetCanBeActivated(Bool)

Declaration
Void SetCanBeActivated(Bool canBeActivated)
Parameters
Type Name Description
Bool canBeActivated
Returns
Type Description
Void
Examples
NSExtendedLicenseInfo thing;
Bool canBeActivated;
thing.SetCanBeActivated(canBeActivated);

SetCurrent(NSLicenseInfo)

Declaration
Void SetCurrent(NSLicenseInfo current)
Parameters
Type Name Description
NSLicenseInfo current
Returns
Type Description
Void
Examples
NSExtendedLicenseInfo thing;
NSLicenseInfo current;
thing.SetCurrent(current);

SetExtendedModuleLicenses(NSExtendedModuleLicense[])

Declaration
Void SetExtendedModuleLicenses(NSExtendedModuleLicense[] extendedModuleLicenses)
Parameters
Type Name Description
NSExtendedModuleLicense[] extendedModuleLicenses
Returns
Type Description
Void
Examples
NSExtendedLicenseInfo thing;
NSExtendedModuleLicense[] extendedModuleLicenses;
thing.SetExtendedModuleLicenses(extendedModuleLicenses);

SetNew(NSLicenseInfo)

Declaration
Void SetNew(NSLicenseInfo new)
Parameters
Type Name Description
NSLicenseInfo new
Returns
Type Description
Void
Examples
NSExtendedLicenseInfo thing;
NSLicenseInfo new;
thing.SetNew(new);

SetReason(String)

Declaration
Void SetReason(String reason)
Parameters
Type Name Description
String reason
Returns
Type Description
Void
Examples
NSExtendedLicenseInfo thing;
String reason;
thing.SetReason(reason);
In This Article
© SuperOffice. All rights reserved.
SuperOffice |  Community |  Release Notes |  Privacy |  Site feedback |  Search Docs |  About Docs |  Contribute |  Back to top