12 references to CompositionEventList
PresentationFramework (12)
System\Windows\Documents\TextStore.cs (12)
1293this.CompositionEventList.Add(new CompositionEventRecord(CompositionStage.StartComposition, startOffsetBefore, endOffsetBefore, _lastCompositionText)); 1347this.CompositionEventList.Add(record); 1360CompositionEventRecord previousRecord = (this.CompositionEventList.Count == 0) ? null : this.CompositionEventList[this.CompositionEventList.Count - 1]; 1366this.CompositionEventList.Add(record); 1405this.CompositionEventList.Add(new CompositionEventRecord(CompositionStage.EndComposition, start.Offset, end.Offset, TextRangeBase.GetTextInternal(start, end))); 3502if (this.CompositionEventList.Count == 0 || 3563this.CompositionEventList.Clear(); 3613IMECompositionTracer.Trace(this, IMECompositionTraceOp.BRaiseCompositionEvents, CompositionEventList.Count); 3622for (int i = 0; i < this.CompositionEventList.Count; i++) 3624CompositionEventRecord record = this.CompositionEventList[i];