AnnotationPathPoint 构造函数

定义

初始化 AnnotationPathPoint 类的新实例。

重载

名称 说明
AnnotationPathPoint()

初始化 AnnotationPathPoint 类的新实例。

AnnotationPathPoint(Single, Single)

使用指定的AnnotationPathPoint值初始化x类的新实例y

AnnotationPathPoint(Single, Single, Byte)

使用指定的AnnotationPathPointxy值初始化类的新实例type

AnnotationPathPoint()

初始化 AnnotationPathPoint 类的新实例。

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

适用于

AnnotationPathPoint(Single, Single)

使用指定的AnnotationPathPoint值初始化x类的新实例y

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)

使用指定的AnnotationPathPointxy值初始化类的新实例type

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

点类型。

适用于