Return List[Control], a list of `Control` subclasses.
(self)
| 5953 | return |
| 5954 | |
| 5955 | def GetChildren(self) -> List['Control']: |
| 5956 | """ |
| 5957 | Return List[Control], a list of `Control` subclasses. |
| 5958 | """ |
| 5959 | children = [] |
| 5960 | child = self.GetFirstChildControl() |
| 5961 | while child: |
| 5962 | children.append(child) |
| 5963 | child = child.GetNextSiblingControl() |
| 5964 | return children |
| 5965 | |
| 5966 | def _CompareFunction(self, control: 'Control', depth: int) -> bool: |
| 5967 | """ |
no test coverage detected