| TopicCollectionFind Method |
This is used to find all topics and sub-topics that match the specified predicate recursively
Namespace: SandcastleBuilder.Utils.ConceptualContentAssembly: SandcastleBuilder.Utils (in SandcastleBuilder.Utils.dll) Version: 2014.11.22.0
Syntax public IEnumerable<Topic> Find(
Predicate<Topic> match,
bool expandParentIfFound
)
Public Function Find (
match As Predicate(Of Topic),
expandParentIfFound As Boolean
) As IEnumerable(Of Topic)
public:
IEnumerable<Topic^>^ Find(
Predicate<Topic^>^ match,
bool expandParentIfFound
)
member Find :
match : Predicate<Topic> *
expandParentIfFound : bool -> IEnumerable<Topic>
Parameters
- match
- Type: SystemPredicateTopic
The match predicate - expandParentIfFound
- Type: SystemBoolean
True to expand the parent if a child node matches or false
to leave it as is. Expanding the node ensures it is visible in the bound tree view.
Return Value
Type:
IEnumerableTopicAn enumerable list of all matches
See Also