Return `TransformPattern` if it supports the pattern else None(Must support according to MSDN).
(self)
| 7465 | self._TransformPattern = None |
| 7466 | |
| 7467 | def GetTransformPattern(self) -> TransformPattern: |
| 7468 | """ |
| 7469 | Return `TransformPattern` if it supports the pattern else None(Must support according to MSDN). |
| 7470 | """ |
| 7471 | return self.GetPattern(PatternId.TransformPattern) |
| 7472 | |
| 7473 | def GetWindowPattern(self) -> WindowPattern: |
| 7474 | """ |
nothing calls this directly
no test coverage detected