Jump to content
  • 4.13 - Modified

    4.13 - Modified

    VBScript   1.3.0

     

    This property contains the date/time when the persistent varibale was 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 datetime value.

     

    This property allows read access only.

     

    If a variable wasn't modified before you access this property, a NULL value will be returned. This is also the case for variables which were originally set with a persistent variable version less than 1.3.0.

     

    You should check for NULL (as in above code snippet) to prevent problems in your code, as not every function is capable of dealing with NULL properly.

     

     


    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.