Documentation Center

PslSourceList.FileDate

Returns the time stamp of the source file.

Syntax

Expression.FileDate 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