AnnotationPathPoint 构造函数

定义

初始化 AnnotationPathPoint 类的新实例。

重载

AnnotationPathPoint()

初始化 AnnotationPathPoint 类的新实例。

AnnotationPathPoint(Single, Single)

使用指定的 xy 值初始化 AnnotationPathPoint 类的新实例。

AnnotationPathPoint(Single, Single, Byte)

用指定的 xy 以及点的 type 值初始化 AnnotationPathPoint 类的新实例。

AnnotationPathPoint()

初始化 AnnotationPathPoint 类的新实例。

public:
 AnnotationPathPoint();
public AnnotationPathPoint ();
Public Sub New ()

适用于

AnnotationPathPoint(Single, Single)

使用指定的 xy 值初始化 AnnotationPathPoint 类的新实例。

public:
 AnnotationPathPoint(float x, float y);
public AnnotationPathPoint (float x, float y);
new System.Windows.Forms.DataVisualization.Charting.AnnotationPathPoint : single * single -> System.Windows.Forms.DataVisualization.Charting.AnnotationPathPoint
Public Sub New (x As Single, y As Single)

参数

x
Single

点的 X 值。

y
Single

点的 Y 值。

适用于

AnnotationPathPoint(Single, Single, Byte)

用指定的 xy 以及点的 type 值初始化 AnnotationPathPoint 类的新实例。

public:
 AnnotationPathPoint(float x, float y, System::Byte type);
public AnnotationPathPoint (float x, float y, byte type);
new System.Windows.Forms.DataVisualization.Charting.AnnotationPathPoint : single * single * byte -> System.Windows.Forms.DataVisualization.Charting.AnnotationPathPoint
Public Sub New (x As Single, y As Single, type As Byte)

参数

x
Single

点的 X 值。

y
Single

点的 Y 值。

type
Byte

点的类型。

适用于