ArcGIS Pro 2.6 API Reference Guide
GeodesicEllipseParameter Class
Members  Example 

ArcGIS.Core.Geometry Namespace : GeodesicEllipseParameter Class
Options for creating a geodesic ellipse with the GeometryEngine.GeodesicEllipse function.
Object Model
GeodesicEllipseParameter ClassCoordinate2D StructureLinearUnit Class
Syntax
public class GeodesicEllipseParameter 
Public Class GeodesicEllipseParameter 
Example
GeodesicEllipseParameter param = new GeodesicEllipseParameter();
param.AxisDirection = 4 * Math.PI / 3;
param.Center = new Coordinate2D(-120, 60);
param.LinearUnit = LinearUnit.Meters;
param.OutGeometryType = GeometryType.Polyline;
param.SemiAxis1Length = 6500000;
param.SemiAxis2Length = 1500000;
param.VertexCount = 800;

Geometry geometry = GeometryEngine.Instance.GeodesicEllipse(param, SpatialReferences.WGS84);
// geometry.IsEmpty = false

Polyline polyline = geometry as Polyline;
// polyline.PointCount = 801
// polyline.PartCount = 1
Inheritance Hierarchy

System.Object
   ArcGIS.Core.Geometry.GeodesicEllipseParameter

Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 7

See Also

Reference

GeodesicEllipseParameter Members
ArcGIS.Core.Geometry Namespace