New to Telerik UI for WPFStart a free 30-day trial

Represents the geometry of a rectangle given in geographical coordinates.

Definition

Namespace:Telerik.Windows.Controls.Map

Assembly:Telerik.Windows.Controls.DataVisualization.dll

Syntax:

C#
public class MapRectangleGeometryView : MapGeometryView

Inheritance: objectMapGeometryViewMapRectangleGeometryView

Inherited Members MapGeometryView.CreateInstanceCore()MapGeometryView.GeometryData

Constructors

Initializes a new instance of the MapRectangleGeometryView class.

C#
public MapRectangleGeometryView()

Fields

Point1Property

DependencyProperty

Identifies the Point1 dependency property.

C#
public static readonly DependencyProperty Point1Property

Point2Property

DependencyProperty

Identifies the Point2 dependency property.

C#
public static readonly DependencyProperty Point2Property

RadiusXProperty

DependencyProperty

Identifies the RadiusX dependency property.

C#
public static readonly DependencyProperty RadiusXProperty

RadiusYProperty

DependencyProperty

Identifies the RadiusY dependency property.

C#
public static readonly DependencyProperty RadiusYProperty

RectProperty

DependencyProperty

Identifies the Rect dependency property.

C#
public static readonly DependencyProperty RectProperty

Properties

Gets or sets the location of the first rectangle corner.

C#
public Location Point1 { get; set; }

Gets or sets the location of the second rectangle corner.

C#
public Location Point2 { get; set; }

Gets or sets the x-axis radius of the ellipse that is used to round the corners of the rectangle. This is a dependency property.

C#
public double RadiusX { get; set; }

Gets or sets the y-axis radius of the ellipse that is used to round the corners of the rectangle. This is a dependency property.

C#
public double RadiusY { get; set; }

Gets or sets the dimensions of the rectangle. This is a dependency property.

C#
public LocationRect Rect { get; set; }