C# Class NAnt.Core.LocationMap.TextPosition

Exibir arquivo Open project: skolima/NAnt

Public Properties

Property Type Description
Column int
Line int

Public Methods

Method Description
TextPosition ( int line, int column ) : System

Initializes a new instance of the TextPosition with the speified line and column.

Method Details

TextPosition() public method

Initializes a new instance of the TextPosition with the speified line and column.
public TextPosition ( int line, int column ) : System
line int The line coordinate of the position.
column int The column coordinate of the position.
return System

Property Details

Column public_oe property

The column coordinate of the position.
public int Column
return int

Line public_oe property

The line coordinate of the position.
public int Line
return int