Table of Contents

Struct PointDouble

Namespace
LightningChartLib.WinForms.Charting
Assembly
LightningChart.WinForms.Charting.NET4.dll

Point, double format.

public struct PointDouble
Inherited Members

Constructors

PointDouble(PointDoubleXY)

Construct the point by using PointDoubleXY as source info.

public PointDouble(PointDoubleXY point)

Parameters

point PointDoubleXY

Source point

PointDouble(double, double)

Constructor.

public PointDouble(double x, double y)

Parameters

x double

X value.

y double

Y value.

Fields

X

X value.

public double X

Field Value

double

Y

Y value.

public double Y

Field Value

double

Methods

Equals(object)

Object equals to PointDouble.

public override bool Equals(object obj)

Parameters

obj object

Object.

Returns

bool

True if object equals to PointDouble, otherwise false.

ToString()

Convert class description to string.

public override string ToString()

Returns

string

Class description as a string.

Operators

operator ==(PointDouble, PointDouble)

Identity of two points.

public static bool operator ==(PointDouble a, PointDouble b)

Parameters

a PointDouble

PointDouble a.

b PointDouble

PointDouble b.

Returns

bool

True if points are identical, otherwise false.

operator !=(PointDouble, PointDouble)

Difference of two points.

public static bool operator !=(PointDouble a, PointDouble b)

Parameters

a PointDouble

PointDouble a.

b PointDouble

PointDouble b.

Returns

bool

True if points are different, otherwise false.