GeometryData
Classes that derive from this abstract base class define geometric shapes given in geographical coordinates. Geometry objects can be used for clipping, hit-testing, and rendering 2-D graphic data.
Definition
Namespace:Telerik.Windows.Controls.Map
Assembly:Telerik.Windows.Controls.DataVisualization.dll
Syntax:
public abstract class GeometryData : INotifyPropertyChanged
Inheritance: objectGeometryData
Derived Classes:
Implements:
Constructors
Initializes a new instance of the GeometryData class.
protected GeometryData()
Properties
Gets or sets value which indicates whether we should force raise of the GeometryBoundsChanged event.
protected bool ForceGeometryBoundsChanged { get; set; }
Gets the value which indicates that the initialization is started.
protected bool InitStarted { get; }
Methods
Starts the initialization process for the geometry.
public void BeginInit()
Indicates that the initialization process for the geometry is complete.
public void EndInit()
Called when some geometry parameters are changed.
protected virtual void OnGeometryChanged()
Raise PropertyChanged event.
protected void OnPropertyChanged(string propertyName)
Property name.
Called when something changed shape base point.
protected virtual void OnShapeBasePointChanged()
Events
Property changed event handler.
public event PropertyChangedEventHandler PropertyChanged
Implements: