ZennoLab Assemblies Documentation
ActionComment Property
See Also  Example Send Feedback
ZennoLab.InterfacesLibrary Assembly > ZennoLab.InterfacesLibrary.ProjectModel Namespace > LastError Class : ActionComment Property

Glossary Item Box

Gets a comment of action with an error.

Syntax

C# 
public string ActionComment {get; set;}

Property Value

Type: System.String

A comment of action with an error.

Example

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

Requirements

Target Platforms: Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family, Windows Seven

See Also

© 2014 All Rights Reserved.