Class CombinedGeometryData
Represents a composite geometry which is a combination of two GeometryData objects. They can be combined via 4 System.Windows.Media.GeometryCombineMode types.
Inherited Members
Namespace: Telerik.Windows.Controls.Map
Assembly: Telerik.Windows.Controls.DataVisualization.dll
Syntax
public class CombinedGeometryData : GeometryData, INotifyPropertyChanged
Constructors
CombinedGeometryData()
Declaration
public CombinedGeometryData()
Properties
CombineMode
The combine mode used for the geometries, determines the way geometries are combined.
Declaration
public GeometryCombineMode CombineMode { get; set; }
Property Value
System.Windows.Media.GeometryCombineMode
|
Geometry1
The first geometry.
Declaration
public GeometryData Geometry1 { get; set; }
Property Value
GeometryData
|
Geometry2
The second geometry.
Declaration
public GeometryData Geometry2 { get; set; }
Property Value
GeometryData
|