ArcObjects Library Reference (System)  

IAngleFormat.DisplayDegrees Property

Indicates if the formatted number is an angle in degrees.

[Visual Basic .NET]
Public Property DisplayDegrees As Boolean
[C#]
public bool DisplayDegrees {get; set;}
[C++]
HRESULT get_DisplayDegrees(
  VARIANT_BOOL* deg
);
[C++]
HRESULT put_DisplayDegrees(
  VARIANT_BOOL deg
);
[C++]

Parameters

deg [out, retval]   deg is a parameter of type VARIANT_BOOL deg [in]   deg is a parameter of type VARIANT_BOOL

Product Availability

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

Description

The DisplayDegrees property sets or returns an option that tells the ValueToString method in the associated INumberFormat interface whether or not the resulting formatted expression is in degrees or radians.

DisplayDegrees has to do with the ValueToString result. If you want the resulting formatted number to be a degree value, set DisplayDegrees True. If DisplayDegrees is False, the formatted number is a radian value.

The settings for DisplayDegrees are:

Setting Description
False (Default) The resulting format is a radian value. A degree symbol is not appended.
True The resulting format is a degree value. A degree symbol (°) is appended to the format.

See Also

IAngleFormat Interface | ILatLonFormat2 Interface | RateFormat Class | IFractionFormat Interface | ICustomNumberFormat Interface | IAngleFormat Interface | ScientificFormat Class | INumberFormat Interface | AngleFormat Class | LatLonFormat Class | INumericFormat Interface | PercentageFormat Class | CustomNumberFormat Class | IRateFormat Interface | IPercentageFormat Interface | NumericFormat Class | CurrencyFormat Class | ILatLonFormat Interface | IScientificNumberFormat Interface | FractionFormat Class

.NET Snippets

Decimal Degree Angle Radian Example