FullName: String;
The FullName property determines the full user name.
Sub Main;
Var
MB: IMetabase;
User: IMetabaseUser;
Users: IMetabaseUsers;
s: String;
Begin
MB:=MetabaseClass.Active;
Users:=MB.Security.Users;
User:=Users.Item(0);
Debug.WriteLine(User.FullName);
End Sub Main;
After executing the example the development environment console displays the full name of the first user, created in the security manager of the platform.
See also: