2 instantiations of FixedSOMLineRanges
PresentationFramework (2)
src\Framework\System\Windows\Documents\FixedSOMLineCollection.cs (2)
95range = new FixedSOMLineRanges(); 109range = new FixedSOMLineRanges();
13 references to FixedSOMLineRanges
PresentationFramework (13)
src\Framework\System\Windows\Documents\FixedSOMLineCollection.cs (10)
40_verticals = new List<FixedSOMLineRanges>(); 41_horizontals = new List<FixedSOMLineRanges>(); 79private void _AddLineToRanges(List<FixedSOMLineRanges> ranges, double line, double start, double end) 88FixedSOMLineRanges range; 89double maxSeparation = .5 * FixedSOMLineRanges.MinLineSeparation; 119private bool _IsSeparated(List<FixedSOMLineRanges> lines, double parallelLowEnd, double perpLowEnd, double parallelHighEnd, double perpHighEnd) 177public List<FixedSOMLineRanges> HorizontalLines 185public List<FixedSOMLineRanges> VerticalLines 201private List<FixedSOMLineRanges> _horizontals; 202private List<FixedSOMLineRanges> _verticals;
src\Framework\System\Windows\Documents\FixedSOMPageConstructor.cs (3)
762double minLineSeparation = FixedSOMLineRanges.MinLineSeparation; 764List<FixedSOMLineRanges> horizontal = _lines.HorizontalLines; 765List<FixedSOMLineRanges> vertical = _lines.VerticalLines;