Return `TogglePattern` if it supports the pattern else None(Conditional support according to MSDN).
(self)
| 6549 | return self.GetPattern(PatternId.InvokePattern) |
| 6550 | |
| 6551 | def GetTogglePattern(self) -> TogglePattern: |
| 6552 | """ |
| 6553 | Return `TogglePattern` if it supports the pattern else None(Conditional support according to MSDN). |
| 6554 | """ |
| 6555 | return self.GetPattern(PatternId.TogglePattern) |
| 6556 | |
| 6557 | |
| 6558 | class CalendarControl(Control): |
nothing calls this directly
no test coverage detected