Jump to content
  • 4.11 - CreatedByName

    4.11 - CreatedByName

    VBScript   1.4.0

     

    This property contains the name of the caller when the persistent varibale was stored first time. 

     

    Dim Announcement
    Set Announcement  = new PersistentVariable
    Announcement.Name = "Welcome"
    
    If Not IsNull(Announcement.Created) Then
       PBXScript.OutputTrace "Created:         " & FormatDateTime(Announcement.Created)
       PBXScript.OutputTrace "CreatedByName:   " & Announcement.CreatedByName
       PBXScript.OutputTrace "CreatedByNumber: " & Announcement.CreatedByNumber
    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 writing the first time into this variable to define an own name to be written into CreatedByName, instead of the name of the current caller.

     

     


    Tom Wellige
     Share


     Share




×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use and have taken note of our Privacy Policy.
We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.