GeometryPosition Constructor (Double, Double, Nullable<Double>, Nullable<Double>)
Creates a new instance of the GeometryPosition from components.
Namespace: System.Spatial
Assembly: System.Spatial (in System.Spatial.dll)
Syntax
'Declaration
Public Sub New ( _
x As Double, _
y As Double, _
z As Nullable(Of Double), _
m As Nullable(Of Double) _
)
'Usage
Dim x As Double
Dim y As Double
Dim z As Nullable(Of Double)
Dim m As Nullable(Of Double)
Dim instance As New GeometryPosition(x, y, z, m)
public GeometryPosition(
double x,
double y,
Nullable<double> z,
Nullable<double> m
)
public:
GeometryPosition(
double x,
double y,
Nullable<double> z,
Nullable<double> m
)
new :
x:float *
y:float *
z:Nullable<float> *
m:Nullable<float> -> GeometryPosition
public function GeometryPosition(
x : double,
y : double,
z : Nullable<double>,
m : Nullable<double>
)
Parameters
- x
Type: System.Double
The X portion of position.
- y
Type: System.Double
The Y portion of position.
- z
Type: System.Nullable<Double>
The altitude portion of position.
- m
Type: System.Nullable<Double>
The arbitrary measure associated with a position.