2 types derived from FixedSOMSemanticBox
PresentationFramework (2)
src\Framework\System\Windows\Documents\FixedSOMContainer.cs (1)
21internal abstract class FixedSOMContainer :FixedSOMSemanticBox, IComparable
src\Framework\System\Windows\Documents\FixedSOMElement.cs (1)
25internal abstract class FixedSOMElement : FixedSOMSemanticBox
24 references to FixedSOMSemanticBox
PresentationFramework (24)
src\Framework\System\Windows\Documents\FixedSOMContainer.cs (6)
32_semanticBoxes = new List<FixedSOMSemanticBox>(); 158protected void AddSorted(FixedSOMSemanticBox box) 174protected void Add(FixedSOMSemanticBox box) 192public List<FixedSOMSemanticBox> SemanticBoxes 223foreach (FixedSOMSemanticBox box in _semanticBoxes) 265protected List<FixedSOMSemanticBox> _semanticBoxes;
src\Framework\System\Windows\Documents\FixedSOMFixedBlock.cs (2)
96foreach (FixedSOMSemanticBox box in _semanticBoxes) 177foreach (FixedSOMSemanticBox box in block.SemanticBoxes)
src\Framework\System\Windows\Documents\FixedSOMPageConstructor.cs (7)
268foreach (FixedSOMSemanticBox box in _fixedSOMPage.SemanticBoxes) 573foreach (FixedSOMSemanticBox box in _fixedSOMPage.SemanticBoxes) 737private bool _IsSpatiallyCombinable(FixedSOMSemanticBox box1, FixedSOMSemanticBox box2, double inflateH, double inflateV) 882List<FixedSOMSemanticBox> boxes = _fixedSOMPage.SemanticBoxes; 1142List<FixedSOMSemanticBox> groups = new List<FixedSOMSemanticBox>();
src\Framework\System\Windows\Documents\FixedSOMSemanticBox.cs (6)
102if (!(o is FixedSOMSemanticBox)) 104throw new ArgumentException(SR.Get(SRID.UnexpectedParameterType, o.GetType(), typeof(FixedSOMSemanticBox)), "o"); 107SpatialComparison compareHor = _CompareHorizontal(o as FixedSOMSemanticBox, false); 109SpatialComparison compareVer = _CompareVertical(o as FixedSOMSemanticBox); 196protected SpatialComparison _CompareHorizontal(FixedSOMSemanticBox otherBox, bool RTL) 251protected SpatialComparison _CompareVertical(FixedSOMSemanticBox otherBox)
src\Framework\System\Windows\Documents\FixedSOMTableCell.cs (1)
90foreach (FixedSOMSemanticBox box in _semanticBoxes)
src\Framework\System\Windows\Documents\FixedTextBuilder.cs (2)
1090List<FixedSOMSemanticBox> children = node.SemanticBoxes; 1092foreach (FixedSOMSemanticBox box in children)