GetAllFeatures: IStringList;
The GetAllFeatures method returns a list of all available features.
The method returns information about features regardless of the type of the license in use: stand-alone or network.
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: