Expands or collapses rows according to a condition, starting from the specified row.
public void ExpandCollapseRecursive(HierarchicalRow<TModel> row, Func<TModel, bool> predicate)
The row from which to start expanding or collapsing.
A function which is passed a model instance and returns a boolean value representing the desired expanded state of the row.