3 writes to _attachedObjects
PresentationFramework (3)
MS\Internal\PtsHost\TextParagraph.cs (3)
73_attachedObjects = null; 819UpdateEmbeddedObjectsCache(ref _attachedObjects, dcpStart, ddcpOld, ddcpNew - ddcpOld); 1063SubmitEmbeddedObjects(ref _attachedObjects, dcpStart, dcpLim, attachedObjects);
20 references to _attachedObjects
PresentationFramework (20)
MS\Internal\PtsHost\TextParagraph.cs (20)
67if(_attachedObjects != null) 69foreach(AttachedObject obj in _attachedObjects) 1163if (_attachedObjects != null) 1165for (int index=0; index < _attachedObjects.Count; index++) 1167_attachedObjects[index].Para.ClearUpdateInfo(); 1201if(_attachedObjects != null && _attachedObjects.Count > 0) 1203objectElement = (AnchoredBlock)(_attachedObjects[0].Element); 1230if (_attachedObjects != null) 1232for (int index=0; index < _attachedObjects.Count; index++) 1234BaseParagraph attachedObjectPara = _attachedObjects[index].Para; 1254if (_attachedObjects != null) 1256for (int index=0; index < _attachedObjects.Count; index++) 1258_attachedObjects[index].Para.InvalidateFormatCache(); 1390return _attachedObjects != null && _attachedObjects.Count > 0; 1402for(int index = 0; _attachedObjects != null && index < _attachedObjects.Count; index++) 1404AttachedObject attachedObject = _attachedObjects[index]; 1763internal List<AttachedObject> AttachedObjectDbg { get { return _attachedObjects; } }