Polygon Constructeurs
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
Polygon(IList<LinearRing>) |
Initialise une nouvelle instance de la Polygon classe dans le service Azure Cosmos DB. |
Polygon(IList<Position>) |
Initialise une nouvelle instance de la Polygon classe, à partir d’un anneau externe (le polygone ne contient pas de trous) dans le service Azure Cosmos DB. |
Polygon(IList<LinearRing>, GeometryParams) |
Initialise une nouvelle instance de la Polygon classe dans le service Azure Cosmos DB. |
Polygon(IList<LinearRing>)
- Source:
- Polygon.cs
Initialise une nouvelle instance de la Polygon classe dans le service Azure Cosmos DB.
public Polygon (System.Collections.Generic.IList<Microsoft.Azure.Cosmos.Spatial.LinearRing> rings);
new Microsoft.Azure.Cosmos.Spatial.Polygon : System.Collections.Generic.IList<Microsoft.Azure.Cosmos.Spatial.LinearRing> -> Microsoft.Azure.Cosmos.Spatial.Polygon
Public Sub New (rings As IList(Of LinearRing))
Paramètres
- rings
- IList<LinearRing>
Anneaux polygonaux.
Le premier anneau est un anneau externe. Les anneaux suivants définissent des « trous » dans le polygone.
S’applique à
Polygon(IList<Position>)
- Source:
- Polygon.cs
Initialise une nouvelle instance de la Polygon classe, à partir d’un anneau externe (le polygone ne contient pas de trous) dans le service Azure Cosmos DB.
public Polygon (System.Collections.Generic.IList<Microsoft.Azure.Cosmos.Spatial.Position> externalRingPositions);
new Microsoft.Azure.Cosmos.Spatial.Polygon : System.Collections.Generic.IList<Microsoft.Azure.Cosmos.Spatial.Position> -> Microsoft.Azure.Cosmos.Spatial.Polygon
Public Sub New (externalRingPositions As IList(Of Position))
Paramètres
S’applique à
Polygon(IList<LinearRing>, GeometryParams)
- Source:
- Polygon.cs
Initialise une nouvelle instance de la Polygon classe dans le service Azure Cosmos DB.
public Polygon (System.Collections.Generic.IList<Microsoft.Azure.Cosmos.Spatial.LinearRing> rings, Microsoft.Azure.Cosmos.Spatial.GeometryParams geometryParams);
new Microsoft.Azure.Cosmos.Spatial.Polygon : System.Collections.Generic.IList<Microsoft.Azure.Cosmos.Spatial.LinearRing> * Microsoft.Azure.Cosmos.Spatial.GeometryParams -> Microsoft.Azure.Cosmos.Spatial.Polygon
Public Sub New (rings As IList(Of LinearRing), geometryParams As GeometryParams)
Paramètres
- rings
- IList<LinearRing>
Anneaux polygonaux.
- geometryParams
- GeometryParams
Paramètres géométriques supplémentaires.
S’applique à
Azure SDK for .NET