ZennoLab Assemblies Documentation
ActionGroupId Property
Example 
ZennoLab.InterfacesLibrary.ProjectModel Namespace > LastError Class : ActionGroupId Property
Gets an ID of group of action with an error.
Syntax
public string ActionGroupId {get; set;}

Property Value

Type: System.String

An ID of group of action with an error.

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