Feature.GetGeometryAsLine Method
Gets the geometry as a LineGeometry.
Thread safety: This method is thread-safe but the returned object is not.
GetGeometryAsLine()
Gets the geometry as a LineGeometry.Syntax
public LineGeometry GetGeometryAsLine ()
Return Value
Type: LineGeometry
A LineGeometry if the position of this feature is defined by a LineGeometry; otherwise, a null reference.
A LineGeometry if the position of this feature is defined by a LineGeometry; otherwise, a null reference.
Example
// Get the point collection for a line feature
public static PointCollection GetPointsFromLineFeature(Feature feature)
{
// Check if the feature is a line feature
if (feature.GeometryType == GeometryType.Line)
{
// Get the LineGeometry form the feature and return the points from it
return feature.GetGeometryAsLine().Points;
}
// The Feature is not a Line, so return nothing
return null;
}
Platforms
Windows, Linux, Android