FullName
This function returns full name (first and last name) or user with specified login.
Syntax
FullName("userLogin");
Function arguments
- userLogin – (String) The login of the user for which full name is to be retrieved
Return value
This function returns String.
Returns full name of user with specified login or an empty string if none user was found for specified login or no full name is specified for that user.
Examples
Example 1:
Get current user’s full name and store it in 'myFullName’ variable.
myFullName = FullName(CurrentUser());