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