ILicenseManager.FeatureDescription

Syntax

FeatureDescription(FeatureName: String): String;

Parameters

FeatureName. Feature name.

Description

The FeatureDescription property returns name of a system feature.

Comments

Names of system features are contained in the UiLicenseFeatureType enumeration brief description.

Example

To execute the example, add links to the Host and Ui system assemblies.

Sub UserProc;
Var
    LicManager: ILicenseManager;
    AllFeatures: IStringList;
    Feature: String;
    Count,i: Integer;
Begin
    LicManager := WinApplication.Instance.LicenseManager;
    
// Get a list of available features
    AllFeatures := LicManager.GetAllFeatures;
    Count := AllFeatures.Count;
    
// Display a list of obtained features names to the console
    For i := 0 To Count - 1 Do
        Feature := AllFeatures.Item(i) 
As String;
        Debug.WriteLine(LicManager.FeatureDescription(Feature));
    
End For;
End Sub UserProc;

After executing the example, the console will display a list of features names.

See also:

ILicenseManager