Gets child control at given index. The control index. The child control.
(int index)
| 234 | /// <param name="index">The control index.</param> |
| 235 | /// <returns>The child control.</returns> |
| 236 | public Control GetChild(int index) |
| 237 | { |
| 238 | return _children[index]; |
| 239 | } |
| 240 | |
| 241 | /// <summary> |
| 242 | /// Searches for a child control of a specific type. If there are multiple controls matching the type, only the first one found is returned. |
nothing calls this directly
no test coverage detected