Return `TextPattern` if it supports the pattern else None(Conditional support according to MSDN).
(self)
| 7337 | return self.GetPattern(PatternId.TableItemPattern) |
| 7338 | |
| 7339 | def GetTextPattern(self) -> TextPattern: |
| 7340 | """ |
| 7341 | Return `TextPattern` if it supports the pattern else None(Conditional support according to MSDN). |
| 7342 | """ |
| 7343 | return self.GetPattern(PatternId.TextPattern) |
| 7344 | |
| 7345 | |
| 7346 | class ThumbControl(Control): |
nothing calls this directly
no test coverage detected