This document is archived and information here might be outdated.  Recommended version.


IObjectInspector.Inspect Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Editor > ESRI.ArcGIS.Editor > Interfaces > IO > IObjectInspector Interface > IObjectInspector.Inspect Method
ArcGIS Developer Help

IObjectInspector.Inspect Method

Inspects the properties of the features.

[Visual Basic .NET]
Public Sub Inspect ( _
    ByVal objects As IEnumRow, _
    ByVal Editor As IEditor _
)
[C#]
public void Inspect (
    IEnumRow objects,
    IEditor Editor
);

Product Availability

Available with ArcGIS Desktop.

Remarks

Use the Inspect method to display your custom Feature Inspector.

The Inspect method provides you with an enumeration of row objects to inspect as well as a pointer to the Editor extension. Use the row enumeration to retrieve properties of a feature. Then you can use the Editor object reference to modify properties of a row within the context of an edit operation.

See Also

IObjectInspector Interface