ErrorItem Interface
An error, warning, or message contained within the Error List window.
Namespace: EnvDTE80
Assembly: EnvDTE80 (in EnvDTE80.dll)
Syntax
'Declaration
<GuidAttribute("F49A191F-7258-493B-9310-5F7771DDF3D7")> _
Public Interface ErrorItem
[GuidAttribute("F49A191F-7258-493B-9310-5F7771DDF3D7")]
public interface ErrorItem
[GuidAttribute(L"F49A191F-7258-493B-9310-5F7771DDF3D7")]
public interface class ErrorItem
[<GuidAttribute("F49A191F-7258-493B-9310-5F7771DDF3D7")>]
type ErrorItem = interface end
public interface ErrorItem
The ErrorItem type exposes the following members.
Properties
Name | Description | |
---|---|---|
Collection | Gets the collection containing this ErrorItem object. | |
Column | Gets an integer value indicating which column in the code document the ErrorItem exists. | |
Description | Gets a string describing the source of the ErrorItem. | |
DTE | Gets the top-level extensibility object. | |
ErrorLevel | Gets an enumeration indicating the severity of the build error. | |
FileName | Gets the full path and name of the object's file. | |
Line | Gets an integer value indicating which line in the code document the ErrorItem exists. | |
Project | Gets a string indicating the name of the project where the error occurred. |
Top
Methods
Name | Description | |
---|---|---|
Navigate | Moves the cursor to the location of the error. |
Top