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