DataPoint Constructor(Object,Object)
In This Topic
Creates one
DataPoint instance.
Syntax
'Declaration
Public Function New( _
ByVal As System.Object, _
ByVal As System.Object _
)
'Usage
Dim x As System.Object
Dim y As System.Object
Dim instance As New DataPoint(x, y)
public DataPoint(
System.object ,
System.object
)
public DataPoint(
: System.TObject;
: System.TObject
);
public function DataPoint(
: System.Object,
: System.Object
);
public: DataPoint(
System.Object* ,
System.Object*
)
public:
DataPoint(
System.Object^ ,
System.Object^
)
Parameters
- x
- The X coordinate value of this DataPoint.
- y
- The Y coordinate value of this DataPoint.
See Also