3 writes to _attachedObjects
PresentationFramework (3)
MS\Internal\PtsHost\TextParagraph.cs (3)
80_attachedObjects = null; 826UpdateEmbeddedObjectsCache(ref _attachedObjects, dcpStart, ddcpOld, ddcpNew - ddcpOld); 1070SubmitEmbeddedObjects(ref _attachedObjects, dcpStart, dcpLim, attachedObjects);
20 references to _attachedObjects
PresentationFramework (20)
MS\Internal\PtsHost\TextParagraph.cs (20)
74if(_attachedObjects != null) 76foreach(AttachedObject obj in _attachedObjects) 1170if (_attachedObjects != null) 1172for (int index=0; index < _attachedObjects.Count; index++) 1174_attachedObjects[index].Para.ClearUpdateInfo(); 1208if(_attachedObjects != null && _attachedObjects.Count > 0) 1210objectElement = (AnchoredBlock)(_attachedObjects[0].Element); 1237if (_attachedObjects != null) 1239for (int index=0; index < _attachedObjects.Count; index++) 1241BaseParagraph attachedObjectPara = _attachedObjects[index].Para; 1261if (_attachedObjects != null) 1263for (int index=0; index < _attachedObjects.Count; index++) 1265_attachedObjects[index].Para.InvalidateFormatCache(); 1397return _attachedObjects != null && _attachedObjects.Count > 0; 1409for(int index = 0; _attachedObjects != null && index < _attachedObjects.Count; index++) 1411AttachedObject attachedObject = _attachedObjects[index]; 1770internal List<AttachedObject> AttachedObjectDbg { get { return _attachedObjects; } }