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