2 types derived from FixedSOMSemanticBox
PresentationFramework (2)
System\Windows\Documents\FixedSOMContainer.cs (1)
12internal abstract class FixedSOMContainer :FixedSOMSemanticBox, IComparable
System\Windows\Documents\FixedSOMElement.cs (1)
18internal abstract class FixedSOMElement : FixedSOMSemanticBox
27 references to FixedSOMSemanticBox
PresentationFramework (27)
System\Windows\Documents\FixedSOMContainer.cs (6)
23_semanticBoxes = new List<FixedSOMSemanticBox>(); 147protected void AddSorted(FixedSOMSemanticBox box) 162protected void Add(FixedSOMSemanticBox box) 179public List<FixedSOMSemanticBox> SemanticBoxes 210foreach (FixedSOMSemanticBox box in _semanticBoxes) 252protected List<FixedSOMSemanticBox> _semanticBoxes;
System\Windows\Documents\FixedSOMFixedBlock.cs (3)
86foreach (FixedSOMSemanticBox box in _semanticBoxes) 167foreach (FixedSOMSemanticBox box in block.SemanticBoxes) 217foreach (FixedSOMSemanticBox box in _semanticBoxes)
System\Windows\Documents\FixedSOMGroup.cs (1)
166foreach (FixedSOMSemanticBox box in _semanticBoxes)
System\Windows\Documents\FixedSOMPage.cs (1)
60List<FixedSOMSemanticBox> groupBoxes = group.SemanticBoxes;
System\Windows\Documents\FixedSOMPageConstructor.cs (7)
258foreach (FixedSOMSemanticBox box in _fixedSOMPage.SemanticBoxes) 558foreach (FixedSOMSemanticBox box in _fixedSOMPage.SemanticBoxes) 724private bool _IsSpatiallyCombinable(FixedSOMSemanticBox box1, FixedSOMSemanticBox box2, double inflateH, double inflateV) 868List<FixedSOMSemanticBox> boxes = _fixedSOMPage.SemanticBoxes; 1128List<FixedSOMSemanticBox> groups = new List<FixedSOMSemanticBox>();
System\Windows\Documents\FixedSOMSemanticBox.cs (6)
93if (!(o is FixedSOMSemanticBox)) 95throw new ArgumentException(SR.Format(SR.UnexpectedParameterType, o.GetType(), typeof(FixedSOMSemanticBox)), "o"); 98SpatialComparison compareHor = _CompareHorizontal(o as FixedSOMSemanticBox, false); 100SpatialComparison compareVer = _CompareVertical(o as FixedSOMSemanticBox); 187protected SpatialComparison _CompareHorizontal(FixedSOMSemanticBox otherBox, bool RTL) 242protected SpatialComparison _CompareVertical(FixedSOMSemanticBox otherBox)
System\Windows\Documents\FixedSOMTableCell.cs (1)
81foreach (FixedSOMSemanticBox box in _semanticBoxes)
System\Windows\Documents\FixedTextBuilder.cs (2)
1059List<FixedSOMSemanticBox> children = node.SemanticBoxes; 1061foreach (FixedSOMSemanticBox box in children)