11 references to CompositionEventList
PresentationFramework (11)
src\Framework\System\Windows\Documents\TextStore.cs (11)
1180this.CompositionEventList.Add(new CompositionEventRecord(CompositionStage.StartComposition, startOffsetBefore, endOffsetBefore, _lastCompositionText)); 1228this.CompositionEventList.Add(record); 1241CompositionEventRecord previousRecord = (this.CompositionEventList.Count == 0) ? null : this.CompositionEventList[this.CompositionEventList.Count - 1]; 1247this.CompositionEventList.Add(record); 1280this.CompositionEventList.Add(new CompositionEventRecord(CompositionStage.EndComposition, start.Offset, end.Offset, TextRangeBase.GetTextInternal(start, end))); 3443if (this.CompositionEventList.Count == 0 || 3492this.CompositionEventList.Clear(); 3543for (int i = 0; i < this.CompositionEventList.Count; i++) 3545CompositionEventRecord record = this.CompositionEventList[i];