PassoloApp.ActiveTransList
Returns the current PslTransList object, this means the translation list whose windows is just active. If a project window is activated and exactly one translation list is selected, this translation list will be returned. Otherwise Nothing is returned.
Syntax
Expression.ActiveTransList as PslTransList
Expression Required. Object of type PassoloApp
Example
Dim trn As PslTransList
Set trn = PSL.ActiveTransList
If trn Is Nothing Then
PSL.Output "No active translation list found."
Else
PSL.Output trn.TargetFile
End If