1 write to _acc
UIAutomationClientSideProviders (1)
MS\Internal\AutomationProxies\Accessible.cs (1)
144_acc = acc;
36 references to _acc
UIAutomationClientSideProviders (36)
MS\Internal\AutomationProxies\Accessible.cs (36)
280internal IAccessible IAccessible { get { return _acc; } } 281internal int ChildCount { get { return GetChildCount(_acc); } } 283internal string Description { get { return GetDescription(_acc, _idChild); } } 284internal string KeyboardShortcut { get { return GetKeyboardShortcut(_acc, _idChild); } } 285internal string Name { get { return GetName(_acc, _idChild); } } 286internal string DefaultAction { get { return GetDefaultAction(_acc, _idChild); } } 287internal AccessibleRole Role { get { return GetRole(_acc, _idChild); } } 302return _idChild == NativeMethods.CHILD_SELF ? GetChildAt(_acc, null, 0) : null; 310return _idChild == NativeMethods.CHILD_SELF ? GetChildAt(_acc, null, Accessible.GetChildCount(_acc) - 1) : null; 322children = SetAccessibleChildrenIndexAndGetChildren(parent._acc); 333if (_accessibleChildrenIndex + 1 < Accessible.GetChildCount(parent._acc)) 335rval = GetChildAt(parent._acc, children, _accessibleChildrenIndex + 1); 349children = SetAccessibleChildrenIndexAndGetChildren(parent._acc); 362rval = GetChildAt(parent._acc, children, _accessibleChildrenIndex - 1); 381rval = _acc; // parent is managing this child 387rval = (IAccessible)_acc.accParent; 409SetAccessibleChildrenIndexAndGetChildren(parent._acc); 483return (AccessibleState)_acc.get_accState(_idChild); 504string value = FixBstr(_acc.get_accValue(_idChild)); 524_acc.set_accValue(_idChild, value); 543NativeMethods.Win32Rect rcW32 = GetLocation(_acc, _idChild); 599obj = _acc.accSelection; 619children[0] = AccessibleFromObject(obj, _acc); 624children[0] = AccessibleFromObject(obj, _acc); 631children[i] = AccessibleFromObject(objs[i], _acc); 646scan = _acc.accFocus; 680return Wrap(_acc, childId); 707return FixBstr(_acc.get_accHelp(_idChild)); 733scan = _acc.accHitTest(x, y); 763rval = Wrap(_acc, idChild); 787_acc.accDoDefaultAction(_idChild); 829return acc1==acc2 || acc1.Compare(acc2._acc, acc2._idChild); 840int result = UnsafeNativeMethods.WindowFromAccessibleObject(_acc, ref _hwnd); 1022NativeMethods.Win32Rect rect1 = GetLocation(_acc, _idChild); 1121_acc.accSelect(selFlags, _idChild);