3 writes to _attachedObjects
PresentationFramework (3)
MS\Internal\PtsHost\TextParagraph.cs (3)
64_attachedObjects = null; 803UpdateEmbeddedObjectsCache(ref _attachedObjects, dcpStart, ddcpOld, ddcpNew - ddcpOld); 1041SubmitEmbeddedObjects(ref _attachedObjects, dcpStart, dcpLim, attachedObjects);
20 references to _attachedObjects
PresentationFramework (20)
MS\Internal\PtsHost\TextParagraph.cs (20)
58if(_attachedObjects != null) 60foreach(AttachedObject obj in _attachedObjects) 1141if (_attachedObjects != null) 1143for (int index=0; index < _attachedObjects.Count; index++) 1145_attachedObjects[index].Para.ClearUpdateInfo(); 1179if(_attachedObjects != null && _attachedObjects.Count > 0) 1181objectElement = (AnchoredBlock)(_attachedObjects[0].Element); 1208if (_attachedObjects != null) 1210for (int index=0; index < _attachedObjects.Count; index++) 1212BaseParagraph attachedObjectPara = _attachedObjects[index].Para; 1232if (_attachedObjects != null) 1234for (int index=0; index < _attachedObjects.Count; index++) 1236_attachedObjects[index].Para.InvalidateFormatCache(); 1368return _attachedObjects != null && _attachedObjects.Count > 0; 1380for(int index = 0; _attachedObjects != null && index < _attachedObjects.Count; index++) 1382AttachedObject attachedObject = _attachedObjects[index]; 1741internal List<AttachedObject> AttachedObjectDbg { get { return _attachedObjects; } }