Description: String;
The Description property returns description of the privilege.
Sub Main;
Var
MB: IMetabase;
MS: IMetabaseSecurity;
MP: IMetabasePolicy;
Privileg: IPrivilege;
S: String;
Begin
MB:=MetabaseClass.Active;
MS:=MB.Security;
MP:=MS.Policy;
Privileg:=MP.Privilege("Entry");
Debug.WriteLine(Priv.Description);
End Sub Main;
After executing this example the description of the privilege with the ENTRY name is displayed in the development environment console.
See also: