1 write to _acc
UIAutomationClientSideProviders (1)
MS\Internal\AutomationProxies\Accessible.cs (1)
145_acc = acc;
36 references to _acc
UIAutomationClientSideProviders (36)
MS\Internal\AutomationProxies\Accessible.cs (36)
281internal IAccessible IAccessible { get { return _acc; } } 282internal int ChildCount { get { return GetChildCount(_acc); } } 284internal string Description { get { return GetDescription(_acc, _idChild); } } 285internal string KeyboardShortcut { get { return GetKeyboardShortcut(_acc, _idChild); } } 286internal string Name { get { return GetName(_acc, _idChild); } } 287internal string DefaultAction { get { return GetDefaultAction(_acc, _idChild); } } 288internal AccessibleRole Role { get { return GetRole(_acc, _idChild); } } 303return _idChild == NativeMethods.CHILD_SELF ? GetChildAt(_acc, null, 0) : null; 311return _idChild == NativeMethods.CHILD_SELF ? GetChildAt(_acc, null, Accessible.GetChildCount(_acc) - 1) : null; 323children = SetAccessibleChildrenIndexAndGetChildren(parent._acc); 334if (_accessibleChildrenIndex + 1 < Accessible.GetChildCount(parent._acc)) 336rval = GetChildAt(parent._acc, children, _accessibleChildrenIndex + 1); 350children = SetAccessibleChildrenIndexAndGetChildren(parent._acc); 363rval = GetChildAt(parent._acc, children, _accessibleChildrenIndex - 1); 382rval = _acc; // parent is managing this child 388rval = (IAccessible)_acc.accParent; 410SetAccessibleChildrenIndexAndGetChildren(parent._acc); 484return (AccessibleState)_acc.get_accState(_idChild); 505string value = FixBstr(_acc.get_accValue(_idChild)); 525_acc.set_accValue(_idChild, value); 544NativeMethods.Win32Rect rcW32 = GetLocation(_acc, _idChild); 600obj = _acc.accSelection; 620children[0] = AccessibleFromObject(obj, _acc); 625children[0] = AccessibleFromObject(obj, _acc); 632children[i] = AccessibleFromObject(objs[i], _acc); 647scan = _acc.accFocus; 681return Wrap(_acc, childId); 708return FixBstr(_acc.get_accHelp(_idChild)); 734scan = _acc.accHitTest(x, y); 764rval = Wrap(_acc, idChild); 788_acc.accDoDefaultAction(_idChild); 830return acc1==acc2 || acc1.Compare(acc2._acc, acc2._idChild); 841int result = UnsafeNativeMethods.WindowFromAccessibleObject(_acc, ref _hwnd); 1023NativeMethods.Win32Rect rect1 = GetLocation(_acc, _idChild); 1122_acc.accSelect(selFlags, _idChild);