ZennoLab Assemblies Documentation
ProjectName Property
Example 
ZennoLab.InterfacesLibrary.ProjectModel Namespace > LastError Class : ProjectName Property
Gets the project name.
Syntax
public string ProjectName {get; set;}

Property Value

Type: System.String

The project name.

Example
The following example uses method GetLastError of "project" for getting last error of project.
LastError error = project.GetLastError();
string tmp = "";
if(error != null)
    tmp = string.Format("ProjectName: {0}.\r\nActionComment: {1}.\r\nActionGroupId: {2}.\r\nActionId: {3}", error.ProjectName, error.ActionComment, error.ActionGroupId, error.ActionId);
 
return tmp;
Requirements

Target Platforms: Desktop: Windows XP SP3 and older. Server: Windows Server 2003 and older.

See Also

Reference

LastError Class
LastError Members