Documentation Center

PslTransList.Selected

Returns or sets the selection state of this translation list in the project window.

Syntax

Expression.Selected as Boolean

Expression Required. Object of type PslTransList

Example

' Print title and language of each selected translation list
' and reset selection
Dim i As Integer
For i = 1 to PSL.ActiveProject.TransLists.Count
  set trn = PSL.ActiveProject.TransLists(i)

  If trn.Selected Then
    PSL.Output trn.SourceList.Title & " " & trn.Language.LangCode
    trn.Selected = False
  End If
Next i