Class ErrorDescriptor
Represents item for error listBox
Inheritance
System.Object
ErrorDescriptor
Namespace: Syncfusion.Scripting.Design
Assembly: Syncfusion.Scripting.Windows.dll
Syntax
public class ErrorDescriptor : Object
Constructors
ErrorDescriptor(String, Int32, Int32)
Initialized class properties.
Declaration
public ErrorDescriptor(string errMessage, int line, int col)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | errMessage | |
| System.Int32 | line | |
| System.Int32 | col |
Properties
Column
Error colum number
Declaration
public int Column { get; }
Property Value
| Type |
|---|
| System.Int32 |
Line
Error line
Declaration
public int Line { get; }
Property Value
| Type |
|---|
| System.Int32 |
Message
Error Message
Declaration
public string Message { get; }
Property Value
| Type |
|---|
| System.String |
Methods
ToString()
Returns the error message associated with this ErrorDescriptor.
Declaration
public override string ToString()
Returns
| Type | Description |
|---|---|
| System.String | A string containing the error message. |