Point2D

StockSharp.Xaml.Charting.Model.DataSeries

2Dポイントを表すstruct

実装: IPoint

コンストラクター

Point2D
public Point2D(double x, double y)
point2D = Point2D(x, y)

Point2D struct の新しいインスタンスを初期化します。

x
x 値。
y
y 値。

プロパティ

X
public double X { get; }
value = point2D.X

X 値を取得する

Y
public double Y { get; }
value = point2D.Y

Y 値を取得する

メソッド

ToString
public override string ToString()
result = point2D.ToString()

このインスタンスを表す文字列を返します。

戻り値: このインスタンスを表す文字列。