Класс SqlGeometryBuilder
Constructs instances of SqlGeometry objects by using IGeometrySink interface.
Иерархия наследования
System. . :: . .Object
Microsoft.SqlServer.Types..::..SqlGeometryBuilder
Пространство имен: Microsoft.SqlServer.Types
Сборка: Microsoft.SqlServer.Types (в Microsoft.SqlServer.Types.dll)
Синтаксис
'Декларация
<CLSCompliantAttribute(True)> _
Public Class SqlGeometryBuilder _
Implements IGeometrySink
'Применение
Dim instance As SqlGeometryBuilder
[CLSCompliantAttribute(true)]
public class SqlGeometryBuilder : IGeometrySink
[CLSCompliantAttribute(true)]
public ref class SqlGeometryBuilder : IGeometrySink
[<CLSCompliantAttribute(true)>]
type SqlGeometryBuilder =
class
interface IGeometrySink
end
public class SqlGeometryBuilder implements IGeometrySink
Тип SqlGeometryBuilder обеспечивает доступ к следующим элементам.
Методы
| Имя | Описание | |
|---|---|---|
![]() |
AddLine(Double, Double) | Constructs additional points in a geometry type figure. |
![]() |
AddLine(Double, Double, Nullable< (Of < <' (Double> ) > > ), Nullable< (Of < <' (Double> ) > > )) | Constructs additional points in the call sequence for a geometry type. |
![]() |
BeginFigure(Double, Double) | Starts the call sequence for a geometry figure. |
![]() |
BeginFigure(Double, Double, Nullable< (Of < <' (Double> ) > > ), Nullable< (Of < <' (Double> ) > > )) | Starts the call sequence for a geometry figure. |
![]() |
BeginGeometry | Initializes a call sequence for a geometry type. |
![]() |
EndFigure | Finishes a call sequence for a geometry figure. |
![]() |
EndGeometry | Finishes a call sequence for a geometry type. |
![]() |
Equals | (Производный от Object.) |
![]() |
Finalize | (Производный от Object.) |
![]() |
GetHashCode | (Производный от Object.) |
![]() |
GetType | (Производный от Object.) |
![]() |
MemberwiseClone | (Производный от Object.) |
![]() |
SetSrid | Sets the Spatial Reference Identifier (SRID) for a geometry type call sequence. |
![]() |
ToString | (Производный от Object.) |
В начало
Замечания
Throws FormatException for an invalid call sequence or when a call sequence is incomplete when ConstructedGeometry() is invoked.
Примеры
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();
Безопасность многопоточности
Любые открытые статический (Shared в Visual Basic) элементы этого типа потокобезопасны. Потокобезопасность с элементами экземпляров не гарантируется.
.gif)
.gif)
.gif)