Return `InvokePattern` if it supports the pattern else None(Conditional support according to MSDN).
(self)
| 6543 | return self.GetPattern(PatternId.ExpandCollapsePattern) |
| 6544 | |
| 6545 | def GetInvokePattern(self) -> InvokePattern: |
| 6546 | """ |
| 6547 | Return `InvokePattern` if it supports the pattern else None(Conditional support according to MSDN). |
| 6548 | """ |
| 6549 | return self.GetPattern(PatternId.InvokePattern) |
| 6550 | |
| 6551 | def GetTogglePattern(self) -> TogglePattern: |
| 6552 | """ |
nothing calls this directly
no test coverage detected