PslSourceList.LastUpdate

Returns the the date and the time when this source list has last been updated.

Syntax

Expression.LastUpdate as Date

Expression Required. Object of type PslSourceList

Example

' Update all string lists that need to be updated
Dim src As PslSourceList
For Each src In PSL.ActiveProject.SourceLists
    If src.FileDate > src.LastUpdate Then
        src.Update
    End If
Next src