3 writes to _attachedObjects
PresentationFramework (3)
MS\Internal\PtsHost\TextParagraph.cs (3)
63_attachedObjects = null; 802UpdateEmbeddedObjectsCache(ref _attachedObjects, dcpStart, ddcpOld, ddcpNew - ddcpOld); 1040SubmitEmbeddedObjects(ref _attachedObjects, dcpStart, dcpLim, attachedObjects);
20 references to _attachedObjects
PresentationFramework (20)
MS\Internal\PtsHost\TextParagraph.cs (20)
57if(_attachedObjects != null) 59foreach(AttachedObject obj in _attachedObjects) 1140if (_attachedObjects != null) 1142for (int index=0; index < _attachedObjects.Count; index++) 1144_attachedObjects[index].Para.ClearUpdateInfo(); 1178if(_attachedObjects != null && _attachedObjects.Count > 0) 1180objectElement = (AnchoredBlock)(_attachedObjects[0].Element); 1207if (_attachedObjects != null) 1209for (int index=0; index < _attachedObjects.Count; index++) 1211BaseParagraph attachedObjectPara = _attachedObjects[index].Para; 1231if (_attachedObjects != null) 1233for (int index=0; index < _attachedObjects.Count; index++) 1235_attachedObjects[index].Para.InvalidateFormatCache(); 1367return _attachedObjects != null && _attachedObjects.Count > 0; 1379for(int index = 0; _attachedObjects != null && index < _attachedObjects.Count; index++) 1381AttachedObject attachedObject = _attachedObjects[index]; 1740internal List<AttachedObject> AttachedObjectDbg { get { return _attachedObjects; } }