New to Telerik UI for WPFStart a free 30-day trial

Represents a position within a string representation of an expression.

Definition

Namespace:Telerik.Expressions

Assembly:Telerik.Windows.Data.dll

Syntax:

C#
public class ExpressionLocation

Inheritance: objectExpressionLocation

Constructors

Initializes a new instance of the ExpressionLocation class.

C#
public ExpressionLocation(int line, int column)
Parameters:lineint

The zero-based number of the line number.

columnint

The zero-based number of the column.

Properties

Gets or sets the zero-based column number.

C#
public int Column { get; set; }

Gets or sets the zero-based line number.

C#
public int Line { get; set; }

Methods

Returns a string that represents the current object.

C#
public override string ToString()
Returns:

string

Overrides: object.ToString()