IList<IDataModelObject> ContactMatch.GetChildren(DataModelObjectCategory childrenType, Boolean recurses, IList<IDataModelObject> children)

Gets the list of children, filtered by type.

Examples

The following command retrieves all comments below the Model. ExtAPI.DataModel.Project.Model.GetChildren(DataModelObjectType.Comment, True)

Parameters

  • childrenType
    The type of DataModelObject to retrieve.
  • recurses
    Type: Boolean
    Whether to retrieve grandchildren recursively.
  • children
    Type: IList<IDataModelObject>
    Input list that will be populated through the whole process. (If not specified a new list will be created.)

Return Value

Type: IList<IDataModelObject>