This document is archived and information here might be outdated. Recommended version. |
Provides access to members that control a custom feature's property inspector.
This interface is new at ArcGIS 9.3.
The IEngineObjectInspector interface is an optional interface that provides the ability to replace the default ObjectInspector with a custom one.
If you extend a feature class with custom properties, you may want to implement the IEngineObjectInspector interface so that you can display and edit those properties using the ControlsEditingAttributeCommand.
Name | Description | |
---|---|---|
Clear | Clear the inspector before inspecting another object. | |
Copy | Copies the values from srcRow to the row being edited. | |
hWnd | The window handle for the inspector. | |
Inspect | Inspects the properties of the features. |
Classes | Description |
---|---|
EngineFeatureInspector | Feature Inspector for Engine. |
In order to create a custom feature inspector, both the IEngineObjectInspector and IClassExtension interfaces must be implemented.
Use the hWnd property to set the control you want to display in the customizable area. You can then customize the actions of the Feature Inspector using the Inspect method. This method is called whenever a feature class or feature is clicked in the Tree View.