Control.ControlCollection.Find(String, Boolean) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
Name 속성으로 컨트롤을 검색하고 일치하는 모든 컨트롤의 배열을 만듭니다.
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()
매개 변수
- key
- String
Control.ControlCollection에서 찾을 수 있는 키입니다.
- searchAllChildren
- Boolean
모든 자식 컨트롤을 검색하려면 true
이고, 그렇지 않으면 false
입니다.
반환
- Control[]
일치하는 컨트롤이 들어 있는 Control 형식의 배열입니다.
예외
key
가 null
이거나 빈 문자열("")입니다.