Point Method (Double, Double, Nullable(Double), Nullable(Double))

Starts a new point.

Namespace:  System.Spatial
Assembly:  System.Spatial (in System.Spatial.dll)

Syntax

'Declaration
Public Function Point ( _
    x As Double, _
    y As Double, _
    z As Nullable(Of Double), _
    m As Nullable(Of Double) _
) As GeometryFactory(Of T)
'Usage
Dim instance As GeometryFactory
Dim x As Double
Dim y As Double
Dim z As Nullable(Of Double)
Dim m As Nullable(Of Double)
Dim returnValue As GeometryFactory(Of T)

returnValue = instance.Point(x, y, z, m)
public GeometryFactory<T> Point(
    double x,
    double y,
    Nullable<double> z,
    Nullable<double> m
)
public:
GeometryFactory<T>^ Point(
    double x, 
    double y, 
    Nullable<double> z, 
    Nullable<double> m
)
member Point : 
        x:float * 
        y:float * 
        z:Nullable<float> * 
        m:Nullable<float> -> GeometryFactory<'T> 
public function Point(
    x : double, 
    y : double, 
    z : Nullable<double>, 
    m : Nullable<double>
) : GeometryFactory<T>

Parameters

Return Value

Type: System.Spatial..::..GeometryFactory< (Of < ( <'T> ) > ) >
The current instance of geometry factory.

See Also

Reference

GeometryFactory< (Of < ( <'T> ) > ) > Class

Point Overload

System.Spatial Namespace