[DllImportAttribute("OleAcc.dll")]
public static HResult AccessibleObjectFromEvent(
IntPtr hWnd,
uint id,
uint childId,
out IAccessible refAccessible,
out Object refChild
)
<DllImportAttribute("OleAcc.dll">]
Public Shared Function AccessibleObjectFromEvent (
hWnd As IntPtr,
id As UInteger,
childId As UInteger,
<OutAttribute> ByRef refAccessible As IAccessible,
<OutAttribute> ByRef refChild As Object
) As HResult
Dim hWnd As IntPtr
Dim id As UInteger
Dim childId As UInteger
Dim refAccessible As IAccessible
Dim refChild As Object
Dim returnValue As HResult
returnValue = OleAcc.AccessibleObjectFromEvent(hWnd,
id, childId, refAccessible, refChild)
public:
[DllImportAttribute(L"OleAcc.dll")]
static HResult AccessibleObjectFromEvent(
IntPtr hWnd,
unsigned int id,
unsigned int childId,
[OutAttribute] IAccessible^% refAccessible,
[OutAttribute] Object^% refChild
)
[<DllImportAttribute("OleAcc.dll")>]
static member AccessibleObjectFromEvent :
hWnd : IntPtr *
id : uint32 *
childId : uint32 *
refAccessible : IAccessible byref *
refChild : Object byref -> HResult
No code example is currently available or this language may not be supported.
Address of a pointer variable that receives the address of an IAccessible interface.
The interface is either for the object that generated the event, or for the parent of the element that generated the event.