Partilhar via


Classe SqlGeometryBuilder

Constructs instances of SqlGeometry objects by using IGeometrySink interface.

Hierarquia de herança

System.Object
  Microsoft.SqlServer.Types.SqlGeometryBuilder

Namespace:  Microsoft.SqlServer.Types
Assembly:  Microsoft.SqlServer.Types (em Microsoft.SqlServer.Types.dll)

Sintaxe

'Declaração
<CLSCompliantAttribute(True)> _
Public Class SqlGeometryBuilder _
    Implements IGeometrySink110, IGeometrySink
'Uso
Dim instance As SqlGeometryBuilder
[CLSCompliantAttribute(true)]
public class SqlGeometryBuilder : IGeometrySink110, 
    IGeometrySink
[CLSCompliantAttribute(true)]
public ref class SqlGeometryBuilder : IGeometrySink110, 
    IGeometrySink
[<CLSCompliantAttribute(true)>]
type SqlGeometryBuilder =  
    class 
        interface IGeometrySink110 
        interface IGeometrySink 
    end
public class SqlGeometryBuilder implements IGeometrySink110, IGeometrySink

O tipo SqlGeometryBuilder expõe os membros a seguir.

Construtores

  Nome Descrição
Método público SqlGeometryBuilder Constructs a SqlGeometryBuilder object.

Início

Propriedades

  Nome Descrição
Propriedade pública ConstructedGeometry Retrieves constructed spatial geometry object.

Início

Métodos

  Nome Descrição
Método público AddCircularArc(Double, Double, Double, Double) Adds a circular arc to the path.
Método público AddCircularArc(Double, Double, Nullable<Double>, Nullable<Double>, Double, Double, Nullable<Double>, Nullable<Double>) Adds a circular arc to the path.
Método público AddLine(Double, Double) Constructs additional points in a geometry type figure.
Método público AddLine(Double, Double, Nullable<Double>, Nullable<Double>) Constructs additional points in the call sequence for a geometry type.
Método público BeginFigure(Double, Double) Starts the call sequence for a geometry figure.
Método público BeginFigure(Double, Double, Nullable<Double>, Nullable<Double>) Starts the call sequence for a geometry figure.
Método público BeginGeometry Initializes a call sequence for a geometry type.
Método público EndFigure Finishes a call sequence for a geometry figure.
Método público EndGeometry Finishes a call sequence for a geometry type.
Método público Equals (Herdado de Object.)
Método protegido Finalize (Herdado de Object.)
Método público GetHashCode (Herdado de Object.)
Método público GetType (Herdado de Object.)
Método protegido MemberwiseClone (Herdado de Object.)
Método público SetSrid Sets the Spatial Reference Identifier (SRID) for a geometry type call sequence.
Método público ToString (Herdado de Object.)

Início

Comentários

Throws FormatException for an invalid call sequence or when a call sequence is incomplete when ConstructedGeometry() is invoked.

Exemplos

The following example constructs a SqlGeometry object from a MultiLineString.

SqlGeometryBuilder b = new SqlGeometryBuilder();

b.SetSrid(0);

b.BeginGeometry(OpenGisGeometryType.MultiLineString);

b.BeginGeometry(OpenGisGeometryType.LineString);

b.BeginFigure(1, 1);

b.AddLine(3, 4);

b.EndFigure();

b.EndGeometry();

b.BeginGeometry(OpenGisGeometryType.LineString);

b.BeginFigure(-5, -3);

b.AddLine(2, 2);

b.EndFigure();

b.EndGeometry();

b.EndGeometry();

SqlGeometry g = b.ConstructedGeometry();

Segurança de thread

Qualquer membro público static (Shared no Visual Basic) desse tipo é seguro para threads. Não há garantia de que qualquer membro de instância seja seguro para threads.

Consulte também

Referência

Namespace Microsoft.SqlServer.Types