internal static bool HasState(AccessibleState state, AccessibleState testState) { return Misc.IsBitSet((int)state, (int)testState); }
private static extern bool AccessibleStateSet_contains(IntPtr obj, AccessibleState index);
internal bool HasState(AccessibleState testState) { return HasState(State, testState); }