3 types derived from BlockElement
PresentationFramework (3)
src\Framework\System\Windows\Documents\DocumentStructures\NamedElement.cs (2)
49
public class StoryBreak :
BlockElement
56
public class NamedElement :
BlockElement
src\Framework\System\Windows\Documents\DocumentStructures\SemanticBasicElement.cs (1)
36
public class SemanticBasicElement :
BlockElement
37 references to BlockElement
PresentationFramework (37)
src\Framework\System\Windows\Documents\DocumentStructures\SemanticBasicElement.cs (23)
43
_elementList = new List<
BlockElement
>();
46
internal List<
BlockElement
> BlockElementList
57
internal List<
BlockElement
> _elementList;
63
public class SectionStructure : SemanticBasicElement, IAddChild, IEnumerable<
BlockElement
>, IEnumerable
74
public void Add(
BlockElement
element)
88
_elementList.Add((
BlockElement
)value);
99
IEnumerator<
BlockElement
> IEnumerable<
BlockElement
>.GetEnumerator()
106
return ((IEnumerable<
BlockElement
>)this).GetEnumerator();
137
_elementList.Add((
BlockElement
)value);
176
_elementList.Add((
BlockElement
)value);
252
public class ListItemStructure : SemanticBasicElement, IAddChild, IEnumerable<
BlockElement
>, IEnumerable
262
public void Add(
BlockElement
element)
275
_elementList.Add((
BlockElement
)value);
284
IEnumerator<
BlockElement
> IEnumerable<
BlockElement
>.GetEnumerator()
291
return ((IEnumerable<
BlockElement
>)this).GetEnumerator();
445
public class TableCellStructure : SemanticBasicElement, IAddChild, IEnumerable<
BlockElement
>, IEnumerable
457
public void Add(
BlockElement
element)
470
_elementList.Add((
BlockElement
)value);
479
IEnumerator<
BlockElement
> IEnumerable<
BlockElement
>.GetEnumerator()
486
return ((IEnumerable<
BlockElement
>)this).GetEnumerator();
src\Framework\System\Windows\Documents\DocumentStructures\StoryFragments.cs (9)
97
public class StoryFragment : IAddChild, IEnumerable<
BlockElement
>, IEnumerable
104
_elementList = new List<
BlockElement
>();
107
public void Add(
BlockElement
element)
126
_elementList.Add( (
BlockElement
) value);
136
IEnumerator<
BlockElement
> IEnumerable<
BlockElement
>.GetEnumerator()
143
return ((IEnumerable<
BlockElement
>)this).GetEnumerator();
191
internal List<
BlockElement
> BlockElementList
199
private List<
BlockElement
> _elementList;
src\Framework\System\Windows\Documents\FixedDSBuilder.cs (5)
86
List<
BlockElement
> blockElementList = storyFragme.BlockElementList;
87
foreach (
BlockElement
be in blockElementList)
146
private void _CreateFlowNodes(
BlockElement
be)
179
List<
BlockElement
> blockElementList = sbe.BlockElementList;
180
foreach (
BlockElement
bElement in blockElementList)