PointBaseShape¶
Namespace: ThinkGeo.Core
This abstract class is the root of all point-based shapes, such as PointShape and MultiPointShape.
public abstract class PointBaseShape : BaseShape
Inheritance Object → BaseShape → PointBaseShape
Remarks:
This class is used as the base class for point shapes such as:
PointShape
MultiPointShape
It can be inherited from to create your own specialized point geometry. If you choose to do this, your new class must conform to one of the well-known text standard shapes in order for the base implementations to work properly.
Properties¶
Id¶
The id of the shape.
public string Id { get; set; }
Property Value¶
Tag¶
The tag of the shape.
public object Tag { get; set; }