2 types derived from FixedSOMSemanticBox
PresentationFramework (2)
System\Windows\Documents\FixedSOMContainer.cs (1)
16internal abstract class FixedSOMContainer :FixedSOMSemanticBox, IComparable
System\Windows\Documents\FixedSOMElement.cs (1)
21internal abstract class FixedSOMElement : FixedSOMSemanticBox
27 references to FixedSOMSemanticBox
PresentationFramework (27)
System\Windows\Documents\FixedSOMContainer.cs (6)
27_semanticBoxes = new List<FixedSOMSemanticBox>(); 151protected void AddSorted(FixedSOMSemanticBox box) 166protected void Add(FixedSOMSemanticBox box) 183public List<FixedSOMSemanticBox> SemanticBoxes 214foreach (FixedSOMSemanticBox box in _semanticBoxes) 256protected List<FixedSOMSemanticBox> _semanticBoxes;
System\Windows\Documents\FixedSOMFixedBlock.cs (3)
90foreach (FixedSOMSemanticBox box in _semanticBoxes) 171foreach (FixedSOMSemanticBox box in block.SemanticBoxes) 221foreach (FixedSOMSemanticBox box in _semanticBoxes)
System\Windows\Documents\FixedSOMGroup.cs (1)
170foreach (FixedSOMSemanticBox box in _semanticBoxes)
System\Windows\Documents\FixedSOMPage.cs (1)
63List<FixedSOMSemanticBox> groupBoxes = group.SemanticBoxes;
System\Windows\Documents\FixedSOMPageConstructor.cs (7)
263foreach (FixedSOMSemanticBox box in _fixedSOMPage.SemanticBoxes) 563foreach (FixedSOMSemanticBox box in _fixedSOMPage.SemanticBoxes) 729private bool _IsSpatiallyCombinable(FixedSOMSemanticBox box1, FixedSOMSemanticBox box2, double inflateH, double inflateV) 873List<FixedSOMSemanticBox> boxes = _fixedSOMPage.SemanticBoxes; 1133List<FixedSOMSemanticBox> groups = new List<FixedSOMSemanticBox>();
System\Windows\Documents\FixedSOMSemanticBox.cs (6)
97if (!(o is FixedSOMSemanticBox)) 99throw new ArgumentException(SR.Format(SR.UnexpectedParameterType, o.GetType(), typeof(FixedSOMSemanticBox)), "o"); 102SpatialComparison compareHor = _CompareHorizontal(o as FixedSOMSemanticBox, false); 104SpatialComparison compareVer = _CompareVertical(o as FixedSOMSemanticBox); 191protected SpatialComparison _CompareHorizontal(FixedSOMSemanticBox otherBox, bool RTL) 246protected SpatialComparison _CompareVertical(FixedSOMSemanticBox otherBox)
System\Windows\Documents\FixedSOMTableCell.cs (1)
85foreach (FixedSOMSemanticBox box in _semanticBoxes)
System\Windows\Documents\FixedTextBuilder.cs (2)
1065List<FixedSOMSemanticBox> children = node.SemanticBoxes; 1067foreach (FixedSOMSemanticBox box in children)