PathFigureData
Represents a subsection of a geometry, a single connected series of two-dimensional geometric segments.
Definition
Namespace:Telerik.Windows.Controls.Map
Assembly:Telerik.Windows.Controls.DataVisualization.dll
Syntax:
public class PathFigureData : INotifyPropertyChanged
Inheritance: objectPathFigureData
Implements:
Constructors
Initializes a new instance of the PathFigureData class.
public PathFigureData()
Properties
Gets the value which indicates that the initialization is started.
protected bool InitStarted { get; }
Gets or sets a value that specifies whether this figures first and last segments are connected.
public bool IsClosed { get; set; }
Gets or sets a value that indicates whether the contained area of this MapPathFigure is to be used for hit-testing, rendering, and clipping.
public bool IsFilled { get; set; }
Gets collection of segments that define the shape of this PathFigure object.
public PathSegmentDataCollection Segments { get; }
Gets or sets the Location where the MapPathFigure begins.
public Location StartPoint { get; set; }
Methods
Starts the initialization process for the geometry.
public void BeginInit()
Indicates that the initialization process for the geometry is complete.
public void EndInit()
Events
Property changed event handler.
public event PropertyChangedEventHandler PropertyChanged
Implements: