2 writes to _semanticBoxes
PresentationFramework (2)
System\Windows\Documents\FixedSOMContainer.cs (2)
22
_semanticBoxes
= new List<FixedSOMSemanticBox>();
186
_semanticBoxes
= value;
24 references to _semanticBoxes
PresentationFramework (24)
System\Windows\Documents\FixedSOMContainer.cs (6)
148
int i=
_semanticBoxes
.Count-1;
151
if (box.CompareTo(
_semanticBoxes
[i]) == 1)
156
_semanticBoxes
.Insert(i+1, box);
163
_semanticBoxes
.Add(box);
182
return
_semanticBoxes
;
209
foreach (FixedSOMSemanticBox box in
_semanticBoxes
)
System\Windows\Documents\FixedSOMFixedBlock.cs (8)
65
return (
_semanticBoxes
.Count == 1 && (
_semanticBoxes
[0] is FixedSOMImage));
81
if (
_semanticBoxes
.Count == 0)
85
foreach (FixedSOMSemanticBox box in
_semanticBoxes
)
125
for (int i=
_semanticBoxes
.Count - 1; i>=0 && run==null; i--)
127
run =
_semanticBoxes
[i] as FixedSOMTextRun;
216
foreach (FixedSOMSemanticBox box in
_semanticBoxes
)
237
if (
_semanticBoxes
.Count == 1)
System\Windows\Documents\FixedSOMGroup.cs (2)
136
_semanticBoxes
.Add(pageElement);
165
foreach (FixedSOMSemanticBox box in
_semanticBoxes
)
System\Windows\Documents\FixedSOMPage.cs (3)
49
for (int i=0; i<
_semanticBoxes
.Count; i++)
51
FixedSOMGroup group =
_semanticBoxes
[i] as FixedSOMGroup;
68
_semanticBoxes
[i].Render(dc, boxIndex.ToString(), debugVisuals);
System\Windows\Documents\FixedSOMTable.cs (2)
52
for (int i = 0; i <
_semanticBoxes
.Count; i++)
54
_semanticBoxes
[i].Render(dc, $"{label} {i}",debugVisual);
System\Windows\Documents\FixedSOMTableCell.cs (1)
80
foreach (FixedSOMSemanticBox box in
_semanticBoxes
)
System\Windows\Documents\FixedSOMTableRow.cs (2)
51
for (int i = 0; i <
_semanticBoxes
.Count; i++)
53
_semanticBoxes
[i].Render(dc, $"{label}:{i}", debugVisual);