This document is archived and information here might be outdated.  Recommended version.


IEllipticArc.IsMinor Property (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Geometry > ESRI.ArcGIS.Geometry > Interfaces > IE > IEllipticArc Interface > IEllipticArc.IsMinor Property
ArcGIS Developer Help

IEllipticArc.IsMinor Property

Indicates whether the arc is a minor arc or a major arc.

[Visual Basic .NET]
Public Property IsMinor As Boolean
[C#]
public bool IsMinor {get; set;}
[C++]
HRESULT get_IsMinor(
  Boolean* IsMinor
);
[C++]
HRESULT put_IsMinor(
  VARIANT_BOOL IsMinor
);
[C++]
Parameters
IsMinor [out, retval]

IsMinor is a parameter of type bool* IsMinor
IsMinor is a parameter of type bool

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Description

IsMinor is TRUE when the CentralAngle < Pi  (180 degrees).  IsMinor also returns TRUE when the semiMajor axis = 0.  If the IsMinor values differ, setting IsMinor changes the EllipticArc to its Complement.

Remarks

 

EllipticArc IsMinor Example

See Also

IEllipticArc Interface