2 types derived from FixedSOMSemanticBox
PresentationFramework (2)
System\Windows\Documents\FixedSOMContainer.cs (1)
11internal abstract class FixedSOMContainer :FixedSOMSemanticBox, IComparable
System\Windows\Documents\FixedSOMElement.cs (1)
17internal abstract class FixedSOMElement : FixedSOMSemanticBox
27 references to FixedSOMSemanticBox
PresentationFramework (27)
System\Windows\Documents\FixedSOMContainer.cs (6)
22_semanticBoxes = new List<FixedSOMSemanticBox>(); 146protected void AddSorted(FixedSOMSemanticBox box) 161protected void Add(FixedSOMSemanticBox box) 178public List<FixedSOMSemanticBox> SemanticBoxes 209foreach (FixedSOMSemanticBox box in _semanticBoxes) 251protected List<FixedSOMSemanticBox> _semanticBoxes;
System\Windows\Documents\FixedSOMFixedBlock.cs (3)
85foreach (FixedSOMSemanticBox box in _semanticBoxes) 166foreach (FixedSOMSemanticBox box in block.SemanticBoxes) 216foreach (FixedSOMSemanticBox box in _semanticBoxes)
System\Windows\Documents\FixedSOMGroup.cs (1)
165foreach (FixedSOMSemanticBox box in _semanticBoxes)
System\Windows\Documents\FixedSOMPage.cs (1)
59List<FixedSOMSemanticBox> groupBoxes = group.SemanticBoxes;
System\Windows\Documents\FixedSOMPageConstructor.cs (7)
259foreach (FixedSOMSemanticBox box in _fixedSOMPage.SemanticBoxes) 559foreach (FixedSOMSemanticBox box in _fixedSOMPage.SemanticBoxes) 725private bool _IsSpatiallyCombinable(FixedSOMSemanticBox box1, FixedSOMSemanticBox box2, double inflateH, double inflateV) 869List<FixedSOMSemanticBox> boxes = _fixedSOMPage.SemanticBoxes; 1129List<FixedSOMSemanticBox> groups = new List<FixedSOMSemanticBox>();
System\Windows\Documents\FixedSOMSemanticBox.cs (6)
92if (!(o is FixedSOMSemanticBox)) 94throw new ArgumentException(SR.Format(SR.UnexpectedParameterType, o.GetType(), typeof(FixedSOMSemanticBox)), nameof(o)); 97SpatialComparison compareHor = _CompareHorizontal(o as FixedSOMSemanticBox, false); 99SpatialComparison compareVer = _CompareVertical(o as FixedSOMSemanticBox); 186protected SpatialComparison _CompareHorizontal(FixedSOMSemanticBox otherBox, bool RTL) 241protected SpatialComparison _CompareVertical(FixedSOMSemanticBox otherBox)
System\Windows\Documents\FixedSOMTableCell.cs (1)
80foreach (FixedSOMSemanticBox box in _semanticBoxes)
System\Windows\Documents\FixedTextBuilder.cs (2)
1055List<FixedSOMSemanticBox> children = node.SemanticBoxes; 1057foreach (FixedSOMSemanticBox box in children)