PslTransList.LastUpdate
Returns the date and the time when this translation list has last been updated.
Syntax
Expression.LastUpdate as Date
Expression Required. Object of type PslTransList
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