Partager via


SqlGeometry.STGeomCollFromText, méthode (SqlChars, Int32)

 

Retourne une instance SqlGeometry à partir d'une représentation OGC (Open Geospatial Consortium) WKT (Well-Known Text) augmentée des valeurs Z (élévation) et M (mesure) apportées par l'instance.

Espace de noms:   Microsoft.SqlServer.Types
Assembly:  Microsoft.SqlServer.Types (dans Microsoft.SqlServer.Types.dll)

Syntaxe

[SqlMethodAttribute(IsDeterministic = true, IsPrecise = false)]
public static SqlGeometry STGeomCollFromText(
    SqlChars geometryCollectionTaggedText,
    int srid
)
public:
[SqlMethodAttribute(IsDeterministic = true, IsPrecise = false)]
static SqlGeometry^ STGeomCollFromText(
    SqlChars^ geometryCollectionTaggedText,
    int srid
)
[<SqlMethodAttribute(IsDeterministic = true, IsPrecise = false)>]
static member STGeomCollFromText : 
        geometryCollectionTaggedText:SqlChars *
        srid:int -> SqlGeometry
<SqlMethodAttribute(IsDeterministic := True, IsPrecise := False)>
Public Shared Function STGeomCollFromText (
    geometryCollectionTaggedText As SqlChars,
    srid As Integer
) As SqlGeometry

Paramètres

  • srid
    Type: System.Int32

    Expression entière qui représente l'ID de référence spatial (SRID) de l'instance SqlGeometry à retourner.

Valeur de retour

Type: Microsoft.SqlServer.Types.SqlGeometry

Valeur SqlGeometry construite à partir de la représentation WKT spécifiée.

Notes

Le type OGC de l'instance SqlGeometry retourné par STGeomCollFromText est défini sur l'entrée WKT correspondante.

Cette méthode lève une exception si l'entrée n'est pas valide.

Ce membre est static.

Voir aussi

SqlGeometry, classe
Microsoft.SqlServer.Types, espace de noms

Retour au début