ExternalError Struct
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Used to create a new external error.
public value class ExternalError
public value class ExternalError
struct ExternalError
public struct ExternalError
type ExternalError = struct
Public Structure ExternalError
- Inheritance
-
ExternalError
Remarks
COM Signature
From: singlefileeditor.idl
typedef struct _tag_ExternalError {
long iLine;
long iCol;
long iErrorID;
BOOL fError;
BSTR bstrText;
BSTR bstrFileName;
} ExternalError;
This structure is used in the IVsEnumExternalErrors interface and is returned by a call to the Next method.
Fields
bstrFileName |
File name of the file containing the error. |
bstrText |
Error text. |
fError |
Nonzero for error, zero for warning. |
iCol |
Error column number. |
iErrorID |
Error ID. |
iLine |
Error line number. |