PslSourceList.SourceFile

Contains the name of the source file for the source list.

Syntax

Expression.SourceFile as String

Expression Required. Object of type PslSourceList

Example

Dim src As PslSourceList
Set src = PSL.ActiveSourceList
If src Is Nothing Then
  PSL.Output "No active source list found."
Else
  PSL.Output src.SourceFile
End If