VBScript 1.4.0
This property contains the name of the caller when the persistent varibale was stored/modified the last time.
Dim Announcement Set Announcement = new PersistentVariable Announcement.Name = "Welcome" If Not IsNull(Announcement.Modified) Then PBXScript.OutputTrace "Modified: " & FormatDateTime(Announcement.Modified) PBXScript.OutputTrace "ModifiedByName: " & Announcement.ModifiedByName PBXScript.OutputTrace "ModifiedByNumber: " & Announcement.ModifiedByNumber End If
This propery returns a string value.
This property allows read access only.
If a variable wasn't set before you access this property, an empty string will be returned.
You can use the CallerName property before updating this variable to define an own name to be written into ModifiedByName, instead of the name of the current caller.
By Tom Wellige