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