PslTransList.CreateSimulation

Creates a translation list, that is a copy of this translation list with simulated translations. If this is already a simulation list, then the simulated strings are newly calculated. It returns a reference to the simulation list.

Syntax

Expression.CreateSimulation as PslTransList

Expression Required. Object of type PslTransList

Example

' Creates a simulation of the current translation list
' and opens it
Dim trn As PslTransList
Set trn = PSL.ActiveTransList

If Not trn Is Nothing Then
   Dim trnSim As PslTransList
   Set trnSim = trn.CreateSimulation
   If Not trnSim Is Nothing Then
      trnSim.Open
   End If
End If