Control.ControlCollection.Find(String, Boolean) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Searches for controls by their Name property and builds an array of all the controls that match.
public:
cli::array <System::Windows::Forms::Control ^> ^ Find(System::String ^ key, bool searchAllChildren);
public System.Windows.Forms.Control[] Find (string key, bool searchAllChildren);
member this.Find : string * bool -> System.Windows.Forms.Control[]
Public Function Find (key As String, searchAllChildren As Boolean) As Control()
Parameters
- key
- String
The key to locate in the Control.ControlCollection.
- searchAllChildren
- Boolean
true
to search all child controls; otherwise, false
.
Returns
Control[]
An array of type Control containing the matching controls.
Exceptions
key
is null
or the empty string ("").
Applies to
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET