Struct SegmentLine
- Namespace
- LightningChartLib.WinForms.Charting
- Assembly
- LightningChart.WinForms.Charting.NET4.dll
Line segment from A to B.
public struct SegmentLine
- Inherited Members
Constructors
SegmentLine(double, double, double, double)
Constructor.
public SegmentLine(double ax, double ay, double bx, double by)
Parameters
axdoublePoint A, X value.
aydoublePoint A, Y value.
bxdoublePoint B, X value.
bydoublePoint B, Y value.
SegmentLine(double, double, double, double, object)
Constructor.
public SegmentLine(double ax, double ay, double bx, double by, object tag)
Parameters
axdoublePoint A, X value.
aydoublePoint A, Y value.
bxdoublePoint B, X value.
bydoublePoint B, Y value.
tagobjectTag, freely assignable object.
Fields
AX
Point A, X value.
public double AX
Field Value
AY
Point A, Y value.
public double AY
Field Value
BX
Point B, X value.
public double BX
Field Value
BY
Point B, Y value.
public double BY
Field Value
Tag
Tag. Freely assignable object.
public object Tag
Field Value
Methods
ToString()
Convert class description to string.
public override string ToString()
Returns
- string
Class description as a string.