SlotName(Index: Intege): String;
Index. Column index.
The SlotName property returns column name in the repository credentials table.
Sub UserProc;
Var
Mb: IMetabase;
LoS: ILogonSession;
Sc: ISecurityConnection;
Cr: ICredentials;
S: String;
Begin
Mb := MetabaseClass.Active;
LoS := Mb.LogonSession;
Sc := LoS.PrimaryConnection;
Cr := Sc.Credentials;
S := Cr.SlotName(0);
End Sub UserProc;
After executing the example the "s" variable contains name of the first column in the repository credentials table.
See also: