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


IParentExtension.Child Property (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > System > ESRI.ArcGIS.esriSystem > Interfaces > IP > IParentExtension Interface > IParentExtension.Child Property
ArcGIS Developer Help

IParentExtension.Child Property

The indicated child extension.

[Visual Basic .NET]
Public Function get_Child ( _
    ByVal index As Integer _
) As IExtension
[C#]
public IExtension get_Child (
    int index
);
[C++]
HRESULT get_Child(
  long index,
  IExtension** Child
);
[C++]
Parameters
index [in]

index is a parameter of type long Child [out, retval]
Child is a parameter of type IExtension**

Product Availability

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

Description

Returns the Child extension at the specified index that belongs to this extension. The first Child extension in the collection will have an index of 0 and the last Child extension in the collection will have an index of ChildCount - 1.

See Also

IParentExtension Interface