Documentation Center

PassoloApp.AfterUpdateTransList

Event handler for the after update trans list event.

Syntax

AfterUpdateTransList (SourceList as PslTransList, ByVal Error as Boolean) as void

TransList the translation updated

Error Set to True, if an error occurred during the operation.

Example

Public Sub PSL_BeforeUpdateTransList(TransList As PslTransList, Abort As Boolean)
  PSL.Output "Number of strings before update: " & Str(TransList.StringCount)
End Sub

Public Sub PSL_AfterUpdateTransList(TransList As PslTransList, ByVal Error As Boolean)
  PSL.Output "Number of strings after update: " & Str(TransList.StringCount)
End Sub