1 write to _acc
UIAutomationClientSideProviders (1)
MS\Internal\AutomationProxies\Accessible.cs (1)
149_acc = acc;
36 references to _acc
UIAutomationClientSideProviders (36)
MS\Internal\AutomationProxies\Accessible.cs (36)
285internal IAccessible IAccessible { get { return _acc; } } 286internal int ChildCount { get { return GetChildCount(_acc); } } 288internal string Description { get { return GetDescription(_acc, _idChild); } } 289internal string KeyboardShortcut { get { return GetKeyboardShortcut(_acc, _idChild); } } 290internal string Name { get { return GetName(_acc, _idChild); } } 291internal string DefaultAction { get { return GetDefaultAction(_acc, _idChild); } } 292internal AccessibleRole Role { get { return GetRole(_acc, _idChild); } } 307return _idChild == NativeMethods.CHILD_SELF ? GetChildAt(_acc, null, 0) : null; 315return _idChild == NativeMethods.CHILD_SELF ? GetChildAt(_acc, null, Accessible.GetChildCount(_acc) - 1) : null; 327children = SetAccessibleChildrenIndexAndGetChildren(parent._acc); 338if (_accessibleChildrenIndex + 1 < Accessible.GetChildCount(parent._acc)) 340rval = GetChildAt(parent._acc, children, _accessibleChildrenIndex + 1); 354children = SetAccessibleChildrenIndexAndGetChildren(parent._acc); 367rval = GetChildAt(parent._acc, children, _accessibleChildrenIndex - 1); 386rval = _acc; // parent is managing this child 392rval = (IAccessible)_acc.accParent; 417SetAccessibleChildrenIndexAndGetChildren(parent._acc); 491return (AccessibleState)_acc.get_accState(_idChild); 515string value = FixBstr(_acc.get_accValue(_idChild)); 540_acc.set_accValue(_idChild, value); 559NativeMethods.Win32Rect rcW32 = GetLocation(_acc, _idChild); 616obj = _acc.accSelection; 636children[0] = AccessibleFromObject(obj, _acc); 641children[0] = AccessibleFromObject(obj, _acc); 649children[i] = AccessibleFromObject(objs[i], _acc); 664scan = _acc.accFocus; 698return Wrap(_acc, childId); 725return FixBstr(_acc.get_accHelp(_idChild)); 754scan = _acc.accHitTest(x, y); 786rval = Wrap(_acc, idChild); 810_acc.accDoDefaultAction(_idChild); 852return acc1==acc2 || acc1.Compare(acc2._acc, acc2._idChild); 863int result = UnsafeNativeMethods.WindowFromAccessibleObject(_acc, ref _hwnd); 1048NativeMethods.Win32Rect rect1 = GetLocation(_acc, _idChild); 1147_acc.accSelect(selFlags, _idChild);