FindChildren Method
Description
Finds node children according to specified search pattern.
Syntax
Visual Basic
Public Function FindChildren( _
   ByVal Pattern As String, _
   Optional ByVal MatchCase As Boolean = False, _
   Optional ByVal Filter As String = "" _
) As List
Parameters
Pattern
The search text pattern. Pass an empty string ("") to find all. The pattern is matched if it occurs anywhere in the name. Do not use wildcards.
MatchCase
If TRUE, search is case-sensitive.  MatchCase has no effect if the database manager is not case sensitive. For example, if the project is hosted on an MS-SQL database, this flag has no effect.
Filter
A TDFilter.Text to select the items to be returned.
Return Type
A list of TestSetFolder objects.
See Also