Return `ScrollPattern` if it supports the pattern else None(Conditional support according to MSDN).
(self)
| 6767 | return self.GetPattern(PatternId.TextPattern) |
| 6768 | |
| 6769 | def GetScrollPattern(self) -> ScrollPattern: |
| 6770 | """ |
| 6771 | Return `ScrollPattern` if it supports the pattern else None(Conditional support according to MSDN). |
| 6772 | """ |
| 6773 | return self.GetPattern(PatternId.ScrollPattern) |
| 6774 | |
| 6775 | def GetValuePattern(self) -> ValuePattern: |
| 6776 | """ |
nothing calls this directly
no test coverage detected