Retrieves a separate HChor child list that holds all child HModels. It is important to note that this list is not sorted in the same order as it appears in the Chor folder in the PWS. When working with this list, you may not use any iteration porcess other than HModel::GetNextModelInChor() to guarantee that all models are iterated through.
Here is a code snippet that will iterate through all HModels in an HChor object.
for (HModel *model = chor->GetChildModel(); model; model = model->GetNextModelInChor()) {
...
}
|