Call IUIAutomationObjectModelPattern::GetUnderlyingObjectModel, todo. Return `ctypes.POINTER(comtypes.IUnknown)`, an interface used to access the underlying object model of the provider. Refer https://docs.microsoft.com/en-us/windows/desktop/api/uiautomationclient/nf-uiautom
(self)
| 3959 | self.pattern = pattern |
| 3960 | |
| 3961 | def GetUnderlyingObjectModel(self) -> ctypes.POINTER(comtypes.IUnknown): |
| 3962 | """ |
| 3963 | Call IUIAutomationObjectModelPattern::GetUnderlyingObjectModel, todo. |
| 3964 | Return `ctypes.POINTER(comtypes.IUnknown)`, an interface used to access the underlying object model of the provider. |
| 3965 | Refer https://docs.microsoft.com/en-us/windows/desktop/api/uiautomationclient/nf-uiautomationclient-iuiautomationobjectmodelpattern-getunderlyingobjectmodel |
| 3966 | """ |
| 3967 | return self.pattern.GetUnderlyingObjectModel() |
| 3968 | |
| 3969 | |
| 3970 | class RangeValuePattern(): |
nothing calls this directly
no outgoing calls
no test coverage detected