ILicenseManager.GetAllFeatures

Syntax

GetAllFeatures: IStringList;

Description

The GetAllFeatures method returns a list of all available features.

Comments

The method returns information about features regardless of the type of the license in use: stand-alone or network.

Example

To execute the example, place the Button component named Button1 on the form.

Add links to the Host, Ui, Forms, Collections system assemblies.

The example is a handler of the OnClick event for the Button1 component.

Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);
Var
    LicManager: ILicenseManager;
    Features: IStringList;
Begin
    LicManager := WinApplication.Instance.LicenseManager;
    Features := LicManager.GetAllFeatures;
    WinApplication.InformationBox(Features.AsString);

End Sub Button1OnClick;

Clicking the button displays a message with a list of features.

See also:

ILicenseManager