Return `ValuePattern` if it supports the pattern else None(Conditional support according to MSDN).
(self)
| 6797 | return self.GetPattern(PatternId.TextPattern) |
| 6798 | |
| 6799 | def GetValuePattern(self) -> ValuePattern: |
| 6800 | """ |
| 6801 | Return `ValuePattern` if it supports the pattern else None(Conditional support according to MSDN). |
| 6802 | """ |
| 6803 | return self.GetPattern(PatternId.ValuePattern) |
| 6804 | |
| 6805 | |
| 6806 | class GroupControl(Control): |