12 references to CompositionEventList
PresentationFramework (12)
System\Windows\Documents\TextStore.cs (12)
1308this.CompositionEventList.Add(new CompositionEventRecord(CompositionStage.StartComposition, startOffsetBefore, endOffsetBefore, _lastCompositionText)); 1362this.CompositionEventList.Add(record); 1375CompositionEventRecord previousRecord = (this.CompositionEventList.Count == 0) ? null : this.CompositionEventList[this.CompositionEventList.Count - 1]; 1381this.CompositionEventList.Add(record); 1420this.CompositionEventList.Add(new CompositionEventRecord(CompositionStage.EndComposition, start.Offset, end.Offset, TextRangeBase.GetTextInternal(start, end))); 3521if (this.CompositionEventList.Count == 0 || 3582this.CompositionEventList.Clear(); 3632IMECompositionTracer.Trace(this, IMECompositionTraceOp.BRaiseCompositionEvents, CompositionEventList.Count); 3641for (int i = 0; i < this.CompositionEventList.Count; i++) 3643CompositionEventRecord record = this.CompositionEventList[i];