PslSourceList.ExtLang
Returns the id of an extracted language, read-only property.
Syntax
Expression.ExtLang (Index as Long) as Integer
Expression Required. Object of type PslSourceList
Index Index of the extracted language. Value from 1 to PslSourceList.ExtLangCount
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