0 out of 3 rated this helpful - Rate this topic

Control.ControlCollection.Find Method

Searches for controls by their Name property and builds an array of all the controls that match.

Namespace:  System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)
public Control[] Find(
	string key,
	bool searchAllChildren
)

Parameters

key
Type: System.String
The key to locate in the Control.ControlCollection.
searchAllChildren
Type: System.Boolean
true to search all child controls; otherwise, false.

Return Value

Type: System.Windows.Forms.Control[]
An array of type Control containing the matching controls.
Exception Condition
ArgumentException

The key parameter is null or the empty string ("").

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ
searchAllChildren = recursive search
This flag simply means that the search will be performed in the entire control hierarchy
Brilliant help
I salute the programmer who chose to name the parameter searchAllChildren, since if he had just called it search then no doubt the help would read "true to search; otherwise, false.".  How about saying what it actually means, rather than just rephrasing the parameter name?  I guess it has something to do with immediate children versus children of children.