ISecurityPackageUserData.ParamName

Syntax

ParamName(Index: Integer): String;

Parameters

Index. Parameter index.

Description

The ParamName property returns a name of the user's parameter, which index is passed by the Index parameter.

Example

Sub Main;

Var

MB: IMetabase;

LoS: ILogonSession;

Mu: IMetabaseUser;

SPUD: ISecurityPackageUserData;

s: string;

Begin

MB:=MetabaseClass.Active;

LoS:=MB.LogonSession;

Mu:=Los.User;

SPUD:=Mu.PackageData;

s:=SPUD.ParamName(0);

End Sub Main;

After executing the example the "s" variable contains a name of the first user's parameter.

See also:

ISecurityPackageUserData