Documentation Center

PslSourceList.ExportFile

If the source list has been exported as part of a translation bundle, this property returns the path of the translation bundle.

Syntax

Expression.ExportFile as String

Expression Required. Object of type PslSourceList

Example

' Update all string lists that are not exported
Dim src As PslSourceList
For Each src In PSL.ActiveProject.SourceLists
    If src.ExportFile <> "" Then
        src.Update
    End If
Next src