Documentation Center

PslProject.Name

Returns the name of the project. Read-only property.

Syntax

Expression.Name as String

Expression Required. Object of type PslProject

Example

Dim prj As PslProject
Set prj = PSL.ActiveProject
If prj Is Nothing Then
  PSL.Output "No active project found."
Else
  PSL.Output prj.Name
End If