예제 #1
0
 internal static bool HasState(AccessibleState state, AccessibleState testState)
 {
     return Misc.IsBitSet((int)state, (int)testState);
 }
예제 #2
0
 private static extern bool AccessibleStateSet_contains(IntPtr obj, AccessibleState index);
예제 #3
0
 internal bool HasState(AccessibleState testState)
 {
     return HasState(State, testState);
 }