Documentation Center

PslTransList.LastGeneration

Returns the date and the time when the target file has last been generated.

Syntax

Expression.LastGeneration as Date

Expression Required. Object of type PslTransList

Example

' Generate all target files, that are not up to date
For Each trn In PSL.ActiveProject.TransLists
    If trn.LastChange > trn.LastGeneration Then
	trn.GenerateTarget
    End If
Next trn