Feature.GetGeometryAsPoint Method
Gets the geometry as a PointGeometry.
Thread safety: This method is thread-safe but the returned object is not.
GetGeometryAsPoint()
Gets the geometry as a PointGeometry.Syntax
public PointGeometry GetGeometryAsPoint ()
Return Value
Type: PointGeometry
A PointGeometry if the position of this feature is defined by a PointGeometry; otherwise, a null reference.
A PointGeometry if the position of this feature is defined by a PointGeometry; otherwise, a null reference.
Example
// Get the point from a point feature
public static Point GetPointFromPointFeature(Feature feature)
{
// Check if the feature is a point feature
if (feature.GeometryType == GeometryType.Point)
{
// Get the PointGeometry form the feature and return the point from it
return feature.GetGeometryAsPoint().Point;
}
// The Feature is not a Point, so return an empty point
return new Point();
}
Platforms
Windows, Linux, Android