Feature.GeometryType Property
Gets a value that tells what kind of Geometry is associated with the Feature.
Thread safety: This property is thread-safe.
Syntax
public GeometryType GeometryType { get; }
Property Value
Type: GeometryType
A value that tells what kind of geometry is associated with the feature.
A value that tells what kind of geometry is associated with the feature.
Example
// Check if the Feature is a LineGeometry
public static bool IsLineFeature(Feature feature)
{
// Check if the Geometry of the Feature is Line
return feature.GeometryType == GeometryType.Line;
}
Platforms
Windows, Linux, Android