12 references to CompositionEventList
PresentationFramework (12)
System\Windows\Documents\TextStore.cs (12)
1294this.CompositionEventList.Add(new CompositionEventRecord(CompositionStage.StartComposition, startOffsetBefore, endOffsetBefore, _lastCompositionText)); 1348this.CompositionEventList.Add(record); 1361CompositionEventRecord previousRecord = (this.CompositionEventList.Count == 0) ? null : this.CompositionEventList[this.CompositionEventList.Count - 1]; 1367this.CompositionEventList.Add(record); 1406this.CompositionEventList.Add(new CompositionEventRecord(CompositionStage.EndComposition, start.Offset, end.Offset, TextRangeBase.GetTextInternal(start, end))); 3503if (this.CompositionEventList.Count == 0 || 3564this.CompositionEventList.Clear(); 3614IMECompositionTracer.Trace(this, IMECompositionTraceOp.BRaiseCompositionEvents, CompositionEventList.Count); 3623for (int i = 0; i < this.CompositionEventList.Count; i++) 3625CompositionEventRecord record = this.CompositionEventList[i];