MapEllipse.CreateByCenter(MapCoordinateSystem, CoordPoint, Double, Double) Method
Creates a map ellipse using its center point, width and height.
Namespace: DevExpress.XtraMap
Assembly: DevExpress.XtraMap.v24.1.dll
NuGet Package: DevExpress.Win.Map
Declaration
public static MapEllipse CreateByCenter(
MapCoordinateSystem coordSystem,
CoordPoint center,
double width,
double height
)
Parameters
Name | Type | Description |
---|---|---|
coordSystem | MapCoordinateSystem | A MapCoordinateSystem class descendant object representing the coordinate system in which the ellipse should be initialized. |
center | CoordPoint | A CoordPoint object specifying the ellipse center point. |
width | Double | A Double specifying the ellipse width. |
height | Double | A Double specifying the ellipse height. |
Returns
Type | Description |
---|---|
MapEllipse | A MapEllipse object with the specified center point width and height. |
See Also