ArcGIS Pro 3.7 API Reference Guide
ArcGIS.Desktop.Core.UnitFormats Namespace / DisplayUnitFormat Class / DisplayName Property
Example

In This Topic
    DisplayName Property (DisplayUnitFormat)
    In This Topic
    Gets and sets the display name of the unit format
    Syntax
    Public Property DisplayName As String
    public string DisplayName {get; set;}
    Remarks
    This name is typically localized
    Example
    Get the Current Map Location Unit
    {
        //var map = MapView.Active.Map;
        //Note: Must be on the QueuedTask.Run()
    
        //Get the current location unit
        var loc_unit = map.GetLocationUnitFormat();
        var line = $"{loc_unit.DisplayName}, {loc_unit.UnitCode}";
        System.Diagnostics.Debug.WriteLine(line);
    }
    Requirements

    Target Platforms: Windows 11 Home, Pro, Enterprise (64 bit)

    ArcGIS Pro version: 3.0 or higher.
    See Also