2 writes to Line
PresentationFramework (2)
src\Framework\System\Windows\Documents\FixedSOMLineCollection.cs (2)
96range.Line = line; 110range.Line = line;
19 references to Line
PresentationFramework (19)
src\Framework\System\Windows\Documents\FixedSOMLineCollection.cs (8)
93if (line < ranges[i].Line - maxSeparation) 101else if (line < ranges[i].Line + maxSeparation) 132if (lines[i].Line < parallelLowEnd) 138if (lines[i].Line <= parallelHighEnd) 146if (lines[i].Line >= parallelLowEnd && lines[i].Line <= parallelHighEnd) 151} while (i>=0 && lines[i].Line >= parallelLowEnd); 154while (i<lines.Count && lines[i].Line <= parallelHighEnd)
src\Framework\System\Windows\Documents\FixedSOMPageConstructor.cs (11)
782double dropLine = horizontal[h].Line + minLineSeparation; 792while (v < vertical.Count && vertical[v].Line < hStart) 796for (; v < vertical.Count && vertical[v].Line < hEnd; v++) 802if (vCellStart != -1 && horizontal[h2].Line < vBottom + minLineSeparation && 803horizontal[h2].End[hSeg2] + minLineSeparation > vertical[v].Line) 806double top = horizontal[h].Line; 807double bottom = horizontal[h2].Line; 808double left = vertical[vCellStart].Line; 809double right = vertical[v].Line; 833for (h2 = h + 1; h2 < horizontal.Count && horizontal[h2].Line < vBottom + minLineSeparation; h2++) 835hSeg2 = horizontal[h2].GetLineAt(vertical[v].Line + minLineSeparation);