12 references to CompositionEventList
PresentationFramework (12)
System\Windows\Documents\TextStore.cs (12)
1297this.CompositionEventList.Add(new CompositionEventRecord(CompositionStage.StartComposition, startOffsetBefore, endOffsetBefore, _lastCompositionText)); 1351this.CompositionEventList.Add(record); 1364CompositionEventRecord previousRecord = (this.CompositionEventList.Count == 0) ? null : this.CompositionEventList[this.CompositionEventList.Count - 1]; 1370this.CompositionEventList.Add(record); 1409this.CompositionEventList.Add(new CompositionEventRecord(CompositionStage.EndComposition, start.Offset, end.Offset, TextRangeBase.GetTextInternal(start, end))); 3510if (this.CompositionEventList.Count == 0 || 3571this.CompositionEventList.Clear(); 3621IMECompositionTracer.Trace(this, IMECompositionTraceOp.BRaiseCompositionEvents, CompositionEventList.Count); 3630for (int i = 0; i < this.CompositionEventList.Count; i++) 3632CompositionEventRecord record = this.CompositionEventList[i];