com.esri.arcgis.catalog
Interface IGxObjectProperties

All Superinterfaces:
Serializable
All Known Implementing Classes:
GxAddAGSConnection, GxAddAGSObject, GxAddGDSConnection, GxAddWCSConnection, GxAddWMSConnection, GxAddWMTSConnection, GxAGSCatalog, GxAGSConnection, GxAGSDraft, GxAGSDraftFolder, GxAGSFeatureServer, GxAGSFolder, GxAGSGeoDataServer, GxAGSGeometry, GxAGSGeoprocessing, GxAGSGlobe, GxAGSImage, GxAGSLocator, GxAGSMap, GxAGSWMServer, GxCadDataset, GxCoverageDataset, GxDatabase, GxDatabaseServerFolder, GxDataGraph, GxDataServer, GxDataset, GxDiskConnection, GxFeatureDefinitionPackage, GxFile, GxFolder, GxFolderConnections, GxGeoprocessingResult, GxLayer, GxMap, GxMetadata, GxMSDFile, GxNewDatabase, GxPackage, GxPCCoverage, GxPre70Coverage, GxPrjFile, GxRasterDataset, GxRemoteDatabaseFolder, GxReport, GxSDCDataset, GxServiceDefinition, GxShapefileDataset, GxShortcut, GxSpatialReferencesFolder, GxSpatialWeightsMatrixFile, GxStreetMapDataset, GxTextFile, GxTool, GxToolbox, GxToolboxesFolder, GxToolboxesRoot, GxToolset, GxVpfDataset, GxWCSConnection, GxWCSCoverage, GxWMSConnection, GxWMSLayer, GxWMSMap, GxWMTSConnection, GxWMTSLayer, GxWorkspaceFolder, IGxObjectPropertiesProxy, IMSConnection, IMSFeatureClass, IMSFeatureService, IMSImageMap, IMSMetadataService, NewIMSConnection, SearchResults, SearchResultsRoot

public interface IGxObjectProperties
extends Serializable

Provides access to members that return properties of the GxObject.

Product Availability

Available with ArcGIS Desktop.


Method Summary
 void getPropByIndex(int index, String[] name, Object[] value)
          The name and value of the indexed property in the GxObject.
 Object getProperty(String name)
          The value of the named property in the GxObject.
 int getPropertyCount()
          The number of properties in the GxObject.
 void setProperty(String name, Object value)
          Set the value of the named property in the GxObject.
 

Method Detail

getPropertyCount

int getPropertyCount()
                     throws IOException,
                            AutomationException
The number of properties in the GxObject.

Product Availability

Available with ArcGIS Desktop.

Supported Platforms

Windows

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

getPropByIndex

void getPropByIndex(int index,
                    String[] name,
                    Object[] value)
                    throws IOException,
                           AutomationException
The name and value of the indexed property in the GxObject.

Product Availability

Available with ArcGIS Desktop.

Supported Platforms

Windows

Parameters:
index - The index (in)
name - The name (in/out: use single element array)
value - A Variant (in/out: use single element array)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getProperty

Object getProperty(String name)
                   throws IOException,
                          AutomationException
The value of the named property in the GxObject.

Product Availability

Available with ArcGIS Desktop.

Supported Platforms

Windows

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

setProperty

void setProperty(String name,
                 Object value)
                 throws IOException,
                        AutomationException
Set the value of the named property in the GxObject.

Product Availability

Available with ArcGIS Desktop.

Supported Platforms

Windows

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