LineString Method (CoordinateSystem, Double, Double)
Creates a geometric line string with a starting position.
Namespace: System.Spatial
Assembly: System.Spatial (in System.Spatial.dll)
Syntax
'Declaration
Public Shared Function LineString ( _
coordinateSystem As CoordinateSystem, _
x As Double, _
y As Double _
) As GeometryFactory(Of GeometricLineString)
'Usage
Dim coordinateSystem As CoordinateSystem
Dim x As Double
Dim y As Double
Dim returnValue As GeometryFactory(Of GeometricLineString)
returnValue = GeometryFactory.LineString(coordinateSystem, _
x, y)
public static GeometryFactory<GeometricLineString> LineString(
CoordinateSystem coordinateSystem,
double x,
double y
)
public:
static GeometryFactory<GeometricLineString^>^ LineString(
CoordinateSystem^ coordinateSystem,
double x,
double y
)
static member LineString :
coordinateSystem:CoordinateSystem *
x:float *
y:float -> GeometryFactory<GeometricLineString>
public static function LineString(
coordinateSystem : CoordinateSystem,
x : double,
y : double
) : GeometryFactory<GeometricLineString>
Parameters
- coordinateSystem
Type: System.Spatial..::..CoordinateSystem
The coordinate system.
- x
Type: System..::..Double
X
- y
Type: System..::..Double
Y
Return Value
Type: System.Spatial..::..GeometryFactory< (Of < ( <'GeometricLineString> ) > ) >
A geometric line string factory.