Class MapPathFigure
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 MapPathFigure : DependencyObject
Constructors
MapPathFigure()
Initializes a new instance of the MapPathFigure class.
Declaration
public MapPathFigure()
Fields
IsClosedProperty
Identifies the IsClosed dependency property.
Declaration
public static readonly DependencyProperty IsClosedProperty
Field Value
System.Windows.DependencyProperty
|
IsFilledProperty
Identifies the IsFilled dependency property.
Declaration
public static readonly DependencyProperty IsFilledProperty
Field Value
System.Windows.DependencyProperty
|
SegmentsProperty
Identifies the Segments dependency property.
Declaration
public static readonly DependencyProperty SegmentsProperty
Field Value
System.Windows.DependencyProperty
|
StartPointProperty
The identifier for the StartPoint dependency property.
Declaration
public static readonly DependencyProperty StartPointProperty
Field Value
System.Windows.DependencyProperty
|
Properties
IsClosed
Gets or sets a value that specifies whether this figures first and last segments are connected. This is a dependency property.
Declaration
public bool IsClosed { get; set; }
Property Value
System.Boolean
|
IsFilled
Gets or sets whether the contained area of this MapPathFigure is to be used for hit-testing, rendering, and clipping. This is a dependency property.
Declaration
public bool IsFilled { get; set; }
Property Value
System.Boolean
|
Segments
Gets collection of segments that define the shape of this PathFigure object. This is a dependency property.
Declaration
public MapPathSegmentCollection Segments { get; }
Property Value
MapPathSegmentCollection
|
StartPoint
Gets or sets the Location where the MapPathFigure begins. This is a dependency property.
Declaration
public Location StartPoint { get; set; }
Property Value
Location
|