2 writes to _semanticBoxes
PresentationFramework (2)
System\Windows\Documents\FixedSOMContainer.cs (2)
27
_semanticBoxes
= new List<FixedSOMSemanticBox>();
191
_semanticBoxes
= value;
24 references to _semanticBoxes
PresentationFramework (24)
System\Windows\Documents\FixedSOMContainer.cs (6)
153
int i=
_semanticBoxes
.Count-1;
156
if (box.CompareTo(
_semanticBoxes
[i]) == 1)
161
_semanticBoxes
.Insert(i+1, box);
168
_semanticBoxes
.Add(box);
187
return
_semanticBoxes
;
214
foreach (FixedSOMSemanticBox box in
_semanticBoxes
)
System\Windows\Documents\FixedSOMFixedBlock.cs (8)
70
return (
_semanticBoxes
.Count == 1 && (
_semanticBoxes
[0] is FixedSOMImage));
86
if (
_semanticBoxes
.Count == 0)
90
foreach (FixedSOMSemanticBox box in
_semanticBoxes
)
130
for (int i=
_semanticBoxes
.Count - 1; i>=0 && run==null; i--)
132
run =
_semanticBoxes
[i] as FixedSOMTextRun;
221
foreach (FixedSOMSemanticBox box in
_semanticBoxes
)
242
if (
_semanticBoxes
.Count == 1)
System\Windows\Documents\FixedSOMGroup.cs (2)
141
_semanticBoxes
.Add(pageElement);
170
foreach (FixedSOMSemanticBox box in
_semanticBoxes
)
System\Windows\Documents\FixedSOMPage.cs (3)
53
for (int i=0; i<
_semanticBoxes
.Count; i++)
55
FixedSOMGroup group =
_semanticBoxes
[i] as FixedSOMGroup;
72
_semanticBoxes
[i].Render(dc, boxIndex.ToString(), debugVisuals);
System\Windows\Documents\FixedSOMTable.cs (2)
58
for (int i = 0; i <
_semanticBoxes
.Count; i++)
60
_semanticBoxes
[i].Render(dc, $"{label} {i}",debugVisual);
System\Windows\Documents\FixedSOMTableCell.cs (1)
85
foreach (FixedSOMSemanticBox box in
_semanticBoxes
)
System\Windows\Documents\FixedSOMTableRow.cs (2)
56
for (int i = 0; i <
_semanticBoxes
.Count; i++)
58
_semanticBoxes
[i].Render(dc, $"{label}:{i}", debugVisual);