vote up 1 vote down star

How can I get the accessible name using win32 from c#? (the accessible name was set using the standard win form designer)

flag

1 Answer

vote up 1 vote down check

You Must use the Windows Automation API ( sounds strange for accesibility). Call

STDAPI AccessibleObjectFromWindow(
  __in   HWND hwnd,
  __in   DWORD dwObjectID,
  __in   REFIID riid,
  __out  void **ppvObject
);

with the REFIID IAccessible. Cast ppvObject into IAccessible and read the member get_accName.

Windows Accessible API on MSDN

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.