com.esri.arcgis.geometry
Interface IAngularUnitEdit

All Superinterfaces:
Serializable
All Known Implementing Classes:
AngularUnit

public interface IAngularUnitEdit
extends Serializable

Provides access to members that define the properties of an angular unit.

Product Availability

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


Method Summary
 void define(Object name, Object alias, Object abbreviation, Object remarks, Object radiansPerUnit)
          Defines the properties of an angular unit.
 void defineEx(String name, String alias, String abbreviation, String remarks, double[] radiansPerUnit)
          Defines the properties of an angular unit.
 

Method Detail

defineEx

void defineEx(String name,
              String alias,
              String abbreviation,
              String remarks,
              double[] radiansPerUnit)
              throws IOException,
                     AutomationException
Defines the properties of an angular unit.

Description

The DefineEx function allows you to define the properties of a angular unit of measure. The radiansPerUnit parameter defines the relationship of a unit object to radians.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux

Parameters:
name - The name (in)
alias - The alias (in)
abbreviation - The abbreviation (in)
remarks - The remarks (in)
radiansPerUnit - The radiansPerUnit (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

define

void define(Object name,
            Object alias,
            Object abbreviation,
            Object remarks,
            Object radiansPerUnit)
            throws IOException,
                   AutomationException
Defines the properties of an angular unit.

Description

The Define function allows you to define the properties of a angular unit of measure. The radiansPerUnit parameter defines the relationship of a unit object to radians.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux

Parameters:
name - A Variant (in, optional, pass null if not required)
alias - A Variant (in, optional, pass null if not required)
abbreviation - A Variant (in, optional, pass null if not required)
remarks - A Variant (in, optional, pass null if not required)
radiansPerUnit - A Variant (in, optional, pass null if not required)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.