Partager via


GeometryFactory<T>.Point Méthode

Définition

Surcharges

Point()

Démarrer un nouveau point vide

Point(Double, Double)

Démarrer un nouveau point

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

Démarrer un nouveau point

Point()

Démarrer un nouveau point vide

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)

Retours

Instance actuelle de GeometryFactory

S’applique à

Point(Double, Double)

Démarrer un nouveau point

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)

Paramètres

x
Double

Valeur X

y
Double

Valeur Y

Retours

Instance actuelle de GeometryFactory

S’applique à

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

Démarrer un nouveau point

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)

Paramètres

x
Double

Valeur X

y
Double

Valeur Y

z
Nullable<Double>

Valeur Z

m
Nullable<Double>

Valeur M

Retours

Instance actuelle de GeometryFactory

S’applique à