Kommentar
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
The Geometry property contains spatial data that represents information about the physical location and shape of geometric objects.
Namespace: Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)
Syntax
'Declaration
Public Shared ReadOnly Property Geometry As DataType
Get
'Usage
Dim value As DataType
value = DataType.Geometry
public static DataType Geometry { get; }
public:
static property DataType^ Geometry {
DataType^ get ();
}
static member Geometry : DataType
static function get Geometry () : DataType
Property Value
Type: Microsoft.SqlServer.Management.Smo.DataType
A DataType object value that specifies a Geometry definition in the data type.
Examples
Visual Basic
Dim dt As DataType
dt = New DataType(SqlDataType.Geometry)
PowerShell
$dt = new-object Microsoft.SqlServer.Management.Smo.DataType([Microsoft.SqlServer.Management.Smo.SqlDataType]::Geometry)