Reputation: 24017
I'd like to be able to use the Cocoa Accessibility API in a MonoMac application, but I can't find any references to it in the MonoMac documentation. Has AXUIElement.h been mapped yet?
Upvotes: 1
Views: 178
Reputation: 4976
I couldn't find anything on it either.
Some parts can be implemented with DllImport. For example, I did the following:
public const string AccessibilityLibrary = "/System/Library/Frameworks/ApplicationServices.framework/ApplicationServices";
[DllImport (AccessibilityLibrary)]
extern static bool AXAPIEnabled();
Upvotes: 1