IList<IDataModelObject> Fracture.GetChildren(DataModelObjectCategory category, 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

  • category
    The category of the data model object 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>