PslTransString.User
Returns the name or another data field of the user who modified this translation string last.
Syntax
Expression.User (Field as Variant) as String
Expression Object of type PslTransString
Field Variant, optional. Specifies which field to return
- pslUserName (Value = 0, default) Returns the login name of the user
- pslUserFullName (Value = 1) Returns the full name of the user
- pslUserComment (Value = 2) Returns the comment
Example
Sub HandleTransString(t As PslTransString)
PSL.Output "String last changed by " & t.User
End Sub