5 writes to RunType
PresentationFramework (5)
System\Windows\Documents\SpellerStatusTable.cs (5)
139run.RunType = RunType.Error; 463run.RunType = runType; 477run.RunType = runType; 515run.RunType = runType; 606run.RunType = RunType.Dirty; // Should just be one char, unless its an error.
23 references to RunType
PresentationFramework (23)
System\Windows\Documents\SpellerStatusTable.cs (23)
94if (run.RunType == RunType.Dirty) 131Invariant.Assert(run.RunType == RunType.Clean); 171return GetRun(index).RunType == runType; 276runType = run.RunType; 318if (run.RunType == RunType.Clean || run.RunType == RunType.Dirty) 448if (run.RunType == runType) 453else if (run.RunType == oppositeRunType) 470if (index > 0 && GetRun(index - 1).RunType == runType) 486if (index < _runList.Count - 1 && GetRun(index + 1).RunType == runType) 535if (index > 0 && GetRun(index - 1).RunType == run.RunType) 541if (index < _runList.Count - 1 && GetRun(index + 1).RunType == run.RunType) 602if (run.RunType != RunType.Dirty) 608if (index > 0 && GetRun(index - 1).RunType == RunType.Dirty) 642if (index < _runList.Count && GetRun(index).RunType == RunType.Dirty) 703Invariant.Assert(i == 0 || previousRunType != run.RunType, "Found consecutive dirty/dirt or clean/clean runs!"); 706previousRunType = run.RunType; 723if (run.RunType == RunType.Clean) 727else if (run.RunType == RunType.Dirty) 780return run.RunType != RunType.Clean && run.RunType != RunType.Dirty;