com.esri.arcgis.geometry
Interface IVerticalDatumEdit

All Superinterfaces:
Serializable
All Known Implementing Classes:
VerticalDatum

public interface IVerticalDatumEdit
extends Serializable

Provides access to members that control the properties of a vertical datum.

When To Use

Use IVerticalDatumEdit to define a custom vertical datum. You would then use IVerticalCoordinateSystemEdit to define a custom vertical coordinate system.

Product Availability

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


Method Summary
 void define(Object name, Object alias, Object abbreviation, Object remarks)
          Defines the properties of a vertical datum.
 void defineEx(String name, String alias, String abbreviation, String remarks)
          Defines the properties of a vertical datum.
 

Method Detail

defineEx

void defineEx(String name,
              String alias,
              String abbreviation,
              String remarks)
              throws IOException,
                     AutomationException
Defines the properties of a vertical datum.

Product Availability

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

Parameters:
name - The name (in)
alias - The alias (in)
abbreviation - The abbreviation (in)
remarks - The remarks (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)
            throws IOException,
                   AutomationException
Defines the properties of a vertical datum.

Product Availability

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

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)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.