Return `ValuePattern` if it supports the pattern else None(Conditional support according to MSDN).
(self)
| 6773 | return self.GetPattern(PatternId.ScrollPattern) |
| 6774 | |
| 6775 | def GetValuePattern(self) -> ValuePattern: |
| 6776 | """ |
| 6777 | Return `ValuePattern` if it supports the pattern else None(Conditional support according to MSDN). |
| 6778 | """ |
| 6779 | return self.GetPattern(PatternId.ValuePattern) |
| 6780 | |
| 6781 | |
| 6782 | class EditControl(Control): |
nothing calls this directly
no test coverage detected