com.esri.arcgis.editor
Interface IObjectInspectorPanel

All Superinterfaces:
Serializable
All Known Implementing Classes:
FeatureInspector

public interface IObjectInspectorPanel
extends Serializable

Provides access to members that control the default object property inspector.

Remarks

This interface is not useful to 3rd party developers. It was designed for internal implementation of the right hand panel on the Object Inspector.

When To Use

This interface will be removed. Please do not attempt to implement it.

Product Availability

Available with ArcGIS Desktop.

See Also:
com.esri.arcgis.editor.IShortTransactionObjectInspector

Method Summary
 IField getField(int index)
          Attribute field by index.
 int getFieldCount()
          The number of attribute fields displayed.
 IEnumRow getRows()
          The row or rows being inspected.
 int getSelectedField()
          The index of the selected field, or -1.
 ITable getTable()
          The table being edited.
 void setSelectedField(int index)
          The index of the selected field, or -1.
 

Method Detail

getTable

ITable getTable()
                throws IOException,
                       AutomationException
The table being edited.

Product Availability

Available with ArcGIS Desktop.

Supported Platforms

Windows

Returns:
A reference to a com.esri.arcgis.geodatabase.ITable
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getRows

IEnumRow getRows()
                 throws IOException,
                        AutomationException
The row or rows being inspected.

Product Availability

Available with ArcGIS Desktop.

Supported Platforms

Windows

Returns:
A reference to a com.esri.arcgis.editor.IEnumRow
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getFieldCount

int getFieldCount()
                  throws IOException,
                         AutomationException
The number of attribute fields displayed.

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.

getField

IField getField(int index)
                throws IOException,
                       AutomationException
Attribute field by index.

Product Availability

Available with ArcGIS Desktop.

Parameters:
index - The index (in)
Returns:
A reference to a com.esri.arcgis.geodatabase.IField
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getSelectedField

int getSelectedField()
                     throws IOException,
                            AutomationException
The index of the selected field, or -1.

Product Availability

Available with ArcGIS Desktop.

Supported Platforms

Windows

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

setSelectedField

void setSelectedField(int index)
                      throws IOException,
                             AutomationException
The index of the selected field, or -1.

Product Availability

Available with ArcGIS Desktop.

Supported Platforms

Windows

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