Return `Control` subclass or None.
(self)
| 5863 | return Control.CreateControlFromElement(ele) |
| 5864 | |
| 5865 | def GetNextSiblingControl(self) -> 'Control': |
| 5866 | """ |
| 5867 | Return `Control` subclass or None. |
| 5868 | """ |
| 5869 | ele = _AutomationClient.instance().ViewWalker.GetNextSiblingElement(self.Element) |
| 5870 | return Control.CreateControlFromElement(ele) |
| 5871 | |
| 5872 | def GetPreviousSiblingControl(self) -> 'Control': |
| 5873 | """ |
no test coverage detected