Documentation Center

PslSourceList.ExtLangCount

Returns the number of extracted languages, read-only property.

Syntax

Expression.ExtLangCount as Long

Expression Required. Object of type PslSourceList

Example

Sub ShowExtractLanguages(src As PslSourceList)
  PSL.Output src.Title & " extracts "
  Dim i As Integer
  For i = 1 To src.ExtLangCount
    Dim langid As Integer
    langid = src.ExtLang(i)
    PSL.Output PSL.GetLangCode(langid, pslCodeText)
  Next i
End Sub