PassoloApp.AfterUpdateSourceList

Event handler for the after update source list event.

Syntax

AfterUpdateSourceList (SourceList as PslSourceList, ByVal Error as Boolean) as void

SourceList the source list updated before

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

Example

Public Sub PSL_BeforeUpdateSourceList(SourceList As PslSourceList, Abort As Boolean)
  PSL.Output "Number of strings before update: " & Str(SourceList.StringCount)
End Sub

Public Sub PSL_AfterUpdateSourceList(SourceList As PslSourceList, ByVal Error As Boolean)
  PSL.Output "Number of strings after update: " & Str(SourceList.StringCount)
End Sub