2 writes to _semanticBoxes
PresentationFramework (2)
System\Windows\Documents\FixedSOMContainer.cs (2)
23
_semanticBoxes
= new List<FixedSOMSemanticBox>();
187
_semanticBoxes
= value;
24 references to _semanticBoxes
PresentationFramework (24)
System\Windows\Documents\FixedSOMContainer.cs (6)
149
int i=
_semanticBoxes
.Count-1;
152
if (box.CompareTo(
_semanticBoxes
[i]) == 1)
157
_semanticBoxes
.Insert(i+1, box);
164
_semanticBoxes
.Add(box);
183
return
_semanticBoxes
;
210
foreach (FixedSOMSemanticBox box in
_semanticBoxes
)
System\Windows\Documents\FixedSOMFixedBlock.cs (8)
66
return (
_semanticBoxes
.Count == 1 && (
_semanticBoxes
[0] is FixedSOMImage));
82
if (
_semanticBoxes
.Count == 0)
86
foreach (FixedSOMSemanticBox box in
_semanticBoxes
)
126
for (int i=
_semanticBoxes
.Count - 1; i>=0 && run==null; i--)
128
run =
_semanticBoxes
[i] as FixedSOMTextRun;
217
foreach (FixedSOMSemanticBox box in
_semanticBoxes
)
238
if (
_semanticBoxes
.Count == 1)
System\Windows\Documents\FixedSOMGroup.cs (2)
137
_semanticBoxes
.Add(pageElement);
166
foreach (FixedSOMSemanticBox box in
_semanticBoxes
)
System\Windows\Documents\FixedSOMPage.cs (3)
50
for (int i=0; i<
_semanticBoxes
.Count; i++)
52
FixedSOMGroup group =
_semanticBoxes
[i] as FixedSOMGroup;
69
_semanticBoxes
[i].Render(dc, boxIndex.ToString(), debugVisuals);
System\Windows\Documents\FixedSOMTable.cs (2)
53
for (int i = 0; i <
_semanticBoxes
.Count; i++)
55
_semanticBoxes
[i].Render(dc, $"{label} {i}",debugVisual);
System\Windows\Documents\FixedSOMTableCell.cs (1)
81
foreach (FixedSOMSemanticBox box in
_semanticBoxes
)
System\Windows\Documents\FixedSOMTableRow.cs (2)
52
for (int i = 0; i <
_semanticBoxes
.Count; i++)
54
_semanticBoxes
[i].Render(dc, $"{label}:{i}", debugVisual);