Class ExpressionLocation
Represents a position within a string representation of an expression.
Inheritance
Namespace: Telerik.Expressions
Assembly: Telerik.Windows.Data.dll
Syntax
public class ExpressionLocation : Object
Constructors
ExpressionLocation(Int32, Int32)
Initializes a new instance of the ExpressionLocation class.
Declaration
public ExpressionLocation(int line, int column)
Parameters
System.Int32
line
The zero-based number of the line number. |
System.Int32
column
The zero-based number of the column. |
Properties
Column
Gets or sets the zero-based column number.
Declaration
public int Column { get; set; }
Property Value
System.Int32
|
Line
Gets or sets the zero-based line number.
Declaration
public int Line { get; set; }
Property Value
System.Int32
|
Methods
ToString()
Returns a string that represents the current object.
Declaration
public override string ToString()
Returns
System.String
|