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