Méthode Populate
Applies a geometry type call sequence to an IGeometrySink object. The call sequence is a sequential set of figures, lines, and points. SqlGeometry
Espace de noms : Microsoft.SqlServer.Types
Assembly : Microsoft.SqlServer.Types (en Microsoft.SqlServer.Types.dll)
Syntaxe
'Déclaration
Public Sub Populate ( _
sink As IGeometrySink _
)
'Utilisation
Dim instance As SqlGeometry
Dim sink As IGeometrySink
instance.Populate(sink)
public void Populate(
IGeometrySink sink
)
public:
void Populate(
IGeometrySink^ sink
)
member Populate :
sink:IGeometrySink -> unit
public function Populate(
sink : IGeometrySink
)
Paramètres
- sink
Type : Microsoft.SqlServer.Types. . :: . .IGeometrySink
IGeometrySink object that is the receiver of a geometry type call sequence.
Notes
The call sequence is in WKI (Well Known Interface) format. The following example shows the WKI format for the LineString(1 0, 2 0, 3 3).
SetSrid 0
BeginGeometry LineString
BeginFigure 1 0
AddLine 2 0
AddLine 3 3
EndFigure
EndGeometry