Table of Contents

Class Point

Namespace
Gve.Text.DTO
Assembly
Gve.Text.dll

A 2D point.

public class Point
Inheritance
Point
Inherited Members

Constructors

Point()

Initializes a new instance of the Point class.

public Point()

Point(double, double)

Initializes a new instance of the Point class.

public Point(double x, double y)

Parameters

x double

The x.

y double

The y.

Properties

X

Gets or sets the X coordinate.

public double X { get; set; }

Property Value

double

Y

Gets or sets the Y coordinate.

public double Y { get; set; }

Property Value

double

Methods

ToString()

Converts to string.

public override string ToString()

Returns

string

A string that represents this instance.