Documentation Center

PslTransList.GetStatistics

Returns statistical information about the translation list in a PslStatistics object.

Syntax

Expression.GetStatistics as PslStatistics

Expression Required. Object of type PslTransList

Example

Public Sub PSL_OnCloseTransList(TransList As PslTransList)
  Dim ps As PslStatistics

  Set ps = TransList.GetStatistics

  If ps.ToTranslate.StringCount <> 0 Then
    MsgBox("You have to come back to this translation list!")
  End If
End Sub