com.esri.arcgis.schematic
Interface INgUserData

All Superinterfaces:
Serializable
All Known Implementing Classes:
INgUserDataProxy, NgUserData

public interface INgUserData
extends Serializable

Provides access to members that control the userdata.

Description

Userdata are data associated with elements designed to be used for data-specific processing purpose. The difference between user data and properties is that a property generally modifies the graphic representation whereas a user data has no direct impact on that graphic representation. Note also that employing user data assigned to elements cuts the database access and shortens calculation times (the process is less calculation-intensive).

Product Availability

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

See Also:
INgAttribute, INgProperty

Method Summary
 String getName()
          Name of the userdata.
 void setName(String pVal)
          Name of the userdata.
 

Method Detail

getName

String getName()
               throws IOException,
                      AutomationException
Name of the userdata.

Description

This name is defined:

- Either when the INgUserdata is created by code (note that the associated NgUserdata class is a creatable class),

- Or when the userdata is created through ArcGIS Schematics Designer GUI

Product Availability

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

Returns:
The pVal
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

setName

void setName(String pVal)
             throws IOException,
                    AutomationException
Name of the userdata.

Product Availability

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

Parameters:
pVal - The pVal (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.