AnnotationPathPoint Constructors

Definition

Initializes a new instance of the AnnotationPathPoint class.

Overloads

AnnotationPathPoint()

Initializes a new instance of the AnnotationPathPoint class.

AnnotationPathPoint(Single, Single)

Initializes a new instance of the AnnotationPathPoint class with the specified x and y values.

AnnotationPathPoint(Single, Single, Byte)

Initializes a new instance of the AnnotationPathPoint class with the specified x, y and point type values.

AnnotationPathPoint()

Initializes a new instance of the AnnotationPathPoint class.

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

Applies to

AnnotationPathPoint(Single, Single)

Initializes a new instance of the AnnotationPathPoint class with the specified x and y values.

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)

Parameters

x
Single

Point X-value.

y
Single

Point Y-value.

Applies to

AnnotationPathPoint(Single, Single, Byte)

Initializes a new instance of the AnnotationPathPoint class with the specified x, y and point type values.

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)

Parameters

x
Single

Point X-value.

y
Single

Point Y-value.

type
Byte

Point type.

Applies to