PslSourceList.LastChange
Returns the the date and the time when this source list has last been changed by editing tokens or resources.
Syntax
Expression.LastChange as Date
Expression Required. Object of type PslSourceList
Example
' Update all translation lists that need to be updated
For Each trn In PSL.ActiveProject.TransLists
If trn.SourceList.LastChange > trn.LastUpdate Then
trn.Update
End If
Next trn