Class CompilerException.Info
The exception info.
Inheritance
System.Object
CompilerException.Info
Namespace: FastReport.Utils
Assembly: FastReport.Base.dll
Syntax
public class Info
Constructors
Info(Int32, Int32, String, String)
Creates a new instance of Info class.
Declaration
public Info(int line, int column, string reportObject, string message)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | line | Line number. |
System.Int32 | column | Column number. |
System.String | reportObject | Name of report object in which an error occured. |
System.String | message | Error message. |
Properties
Column
Column number.
Declaration
public int Column { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
Line
Line number.
Declaration
public int Line { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
Message
Error message.
Declaration
public string Message { get; }
Property Value
Type | Description |
---|---|
System.String |
ReportObject
Report object in which exception occurs.
Declaration
public string ReportObject { get; }
Property Value
Type | Description |
---|---|
System.String |