1 write to _acc
UIAutomationClientSideProviders (1)
MS\Internal\AutomationProxies\Accessible.cs (1)
152_acc = acc;
36 references to _acc
UIAutomationClientSideProviders (36)
MS\Internal\AutomationProxies\Accessible.cs (36)
288internal IAccessible IAccessible { get { return _acc; } } 289internal int ChildCount { get { return GetChildCount(_acc); } } 291internal string Description { get { return GetDescription(_acc, _idChild); } } 292internal string KeyboardShortcut { get { return GetKeyboardShortcut(_acc, _idChild); } } 293internal string Name { get { return GetName(_acc, _idChild); } } 294internal string DefaultAction { get { return GetDefaultAction(_acc, _idChild); } } 295internal AccessibleRole Role { get { return GetRole(_acc, _idChild); } } 310return _idChild == NativeMethods.CHILD_SELF ? GetChildAt(_acc, null, 0) : null; 318return _idChild == NativeMethods.CHILD_SELF ? GetChildAt(_acc, null, Accessible.GetChildCount(_acc) - 1) : null; 330children = SetAccessibleChildrenIndexAndGetChildren(parent._acc); 341if (_accessibleChildrenIndex + 1 < Accessible.GetChildCount(parent._acc)) 343rval = GetChildAt(parent._acc, children, _accessibleChildrenIndex + 1); 357children = SetAccessibleChildrenIndexAndGetChildren(parent._acc); 370rval = GetChildAt(parent._acc, children, _accessibleChildrenIndex - 1); 389rval = _acc; // parent is managing this child 395rval = (IAccessible)_acc.accParent; 420SetAccessibleChildrenIndexAndGetChildren(parent._acc); 494return (AccessibleState)_acc.get_accState(_idChild); 518string value = FixBstr(_acc.get_accValue(_idChild)); 543_acc.set_accValue(_idChild, value); 562NativeMethods.Win32Rect rcW32 = GetLocation(_acc, _idChild); 619obj = _acc.accSelection; 639children[0] = AccessibleFromObject(obj, _acc); 644children[0] = AccessibleFromObject(obj, _acc); 652children[i] = AccessibleFromObject(objs[i], _acc); 667scan = _acc.accFocus; 701return Wrap(_acc, childId); 728return FixBstr(_acc.get_accHelp(_idChild)); 757scan = _acc.accHitTest(x, y); 789rval = Wrap(_acc, idChild); 813_acc.accDoDefaultAction(_idChild); 855return acc1==acc2 || acc1.Compare(acc2._acc, acc2._idChild); 866int result = UnsafeNativeMethods.WindowFromAccessibleObject(_acc, ref _hwnd); 1051NativeMethods.Win32Rect rect1 = GetLocation(_acc, _idChild); 1150_acc.accSelect(selFlags, _idChild);