Documentation Center

PassoloApp.BeforeUpdateTransList

Event handler for the before update trans list event.

Syntax

BeforeUpdateTransList (TransList as PslTransList, Abort as Boolean) as void

TransList The translation list to be updated

Abort Setting this value to True aborts the current 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