Compartir a través de


GeometryFactory<T>.Point Método

Definición

Sobrecargas

Point()

Iniciar un nuevo punto vacío

Point(Double, Double)

Iniciar un nuevo punto

Point(Double, Double, Nullable<Double>, Nullable<Double>)

Iniciar un nuevo punto

Point()

Iniciar un nuevo punto vacío

public Microsoft.Spatial.GeometryFactory<T> Point ();
member this.Point : unit -> Microsoft.Spatial.GeometryFactory<'T (requires 'T :> Microsoft.Spatial.Geometry)>
Public Function Point () As GeometryFactory(Of T)

Devoluciones

Instancia actual de GeometryFactory

Se aplica a

Point(Double, Double)

Iniciar un nuevo punto

public Microsoft.Spatial.GeometryFactory<T> Point (double x, double y);
member this.Point : double * double -> Microsoft.Spatial.GeometryFactory<'T (requires 'T :> Microsoft.Spatial.Geometry)>
Public Function Point (x As Double, y As Double) As GeometryFactory(Of T)

Parámetros

x
Double

El valor X

y
Double

Valor Y

Devoluciones

Instancia actual de GeometryFactory

Se aplica a

Point(Double, Double, Nullable<Double>, Nullable<Double>)

Iniciar un nuevo punto

public Microsoft.Spatial.GeometryFactory<T> Point (double x, double y, double? z, double? m);
member this.Point : double * double * Nullable<double> * Nullable<double> -> Microsoft.Spatial.GeometryFactory<'T (requires 'T :> Microsoft.Spatial.Geometry)>
Public Function Point (x As Double, y As Double, z As Nullable(Of Double), m As Nullable(Of Double)) As GeometryFactory(Of T)

Parámetros

x
Double

El valor X

y
Double

Valor Y

z
Nullable<Double>

Valor Z

m
Nullable<Double>

Valor M

Devoluciones

Instancia actual de GeometryFactory

Se aplica a