Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Constructs additional points in the call sequence for a geometry type.
Namespace: Microsoft.SqlServer.Types
Assembly: Microsoft.SqlServer.Types (in Microsoft.SqlServer.Types.dll)
Syntax
'Declaration
Public Overridable Sub AddLine ( _
x As Double, _
y As Double, _
z As Nullable(Of Double), _
m As Nullable(Of Double) _
)
'Usage
Dim instance As SqlGeometryBuilder
Dim x As Double
Dim y As Double
Dim z As Nullable(Of Double)
Dim m As Nullable(Of Double)
instance.AddLine(x, y, z, m)
public virtual void AddLine(
double x,
double y,
Nullable<double> z,
Nullable<double> m
)
public:
virtual void AddLine(
double x,
double y,
Nullable<double> z,
Nullable<double> m
)
abstract AddLine :
x:float *
y:float *
z:Nullable<float> *
m:Nullable<float> -> unit
override AddLine :
x:float *
y:float *
z:Nullable<float> *
m:Nullable<float> -> unit
public function AddLine(
x : double,
y : double,
z : Nullable<double>,
m : Nullable<double>
)
Parameters
- x
Type: System.Double
A double that specifies the x-coordinate of a point in a geometry figure.
- y
Type: System.Double
A double that specifies the y-coordinate of a point in a geometry figure.
- z
Type: System.Nullable<Double>
A double that specifies the z-coordinate of a point in a geometry figure. Is Nullable.
- m
Type: System.Nullable<Double>
A double that specifies the measure for the point. Is Nullable.
Implements
IGeometrySink.AddLine(Double, Double, Nullable<Double>, Nullable<Double>)
Remarks
Method is used together with BeginFigure() to construct the points of a geometry type figure. BeginFigure() can only construct the starting endpoint for a geometry type figure. Use AddLine() to construct additional points for the figure.
Method throws a FormatException when there is invalid input.