Return `InvokePattern` if it supports the pattern else None(Must support according to MSDN).
(self)
| 7241 | return self.GetPattern(PatternId.ExpandCollapsePattern) |
| 7242 | |
| 7243 | def GetInvokePattern(self) -> InvokePattern: |
| 7244 | """ |
| 7245 | Return `InvokePattern` if it supports the pattern else None(Must support according to MSDN). |
| 7246 | """ |
| 7247 | return self.GetPattern(PatternId.InvokePattern) |
| 7248 | |
| 7249 | |
| 7250 | class StatusBarControl(Control): |
nothing calls this directly
no test coverage detected