3 types derived from BlockElement
PresentationFramework (3)
System\Windows\Documents\DocumentStructures\NamedElement.cs (2)
30public class StoryBreak : BlockElement 37public class NamedElement : BlockElement
System\Windows\Documents\DocumentStructures\SemanticBasicElement.cs (1)
18public class SemanticBasicElement : BlockElement
37 references to BlockElement
PresentationFramework (37)
System\Windows\Documents\DocumentStructures\SemanticBasicElement.cs (23)
25_elementList = new List<BlockElement>(); 28internal List<BlockElement> BlockElementList 39internal List<BlockElement> _elementList; 45public class SectionStructure : SemanticBasicElement, IAddChild, IEnumerable<BlockElement>, IEnumerable 55public void Add(BlockElement element) 66_elementList.Add((BlockElement)value); 77IEnumerator<BlockElement> IEnumerable<BlockElement>.GetEnumerator() 84return ((IEnumerable<BlockElement>)this).GetEnumerator(); 111_elementList.Add((BlockElement)value); 150_elementList.Add((BlockElement)value); 220public class ListItemStructure : SemanticBasicElement, IAddChild, IEnumerable<BlockElement>, IEnumerable 230public void Add(BlockElement element) 240_elementList.Add((BlockElement)value); 249IEnumerator<BlockElement> IEnumerable<BlockElement>.GetEnumerator() 256return ((IEnumerable<BlockElement>)this).GetEnumerator(); 401public class TableCellStructure : SemanticBasicElement, IAddChild, IEnumerable<BlockElement>, IEnumerable 413public void Add(BlockElement element) 423_elementList.Add((BlockElement)value); 432IEnumerator<BlockElement> IEnumerable<BlockElement>.GetEnumerator() 439return ((IEnumerable<BlockElement>)this).GetEnumerator();
System\Windows\Documents\DocumentStructures\StoryFragments.cs (9)
77public class StoryFragment : IAddChild, IEnumerable<BlockElement>, IEnumerable 84_elementList = new List<BlockElement>(); 87public void Add(BlockElement element) 103_elementList.Add( (BlockElement) value); 113IEnumerator<BlockElement> IEnumerable<BlockElement>.GetEnumerator() 120return ((IEnumerable<BlockElement>)this).GetEnumerator(); 168internal List<BlockElement> BlockElementList 176private List<BlockElement> _elementList;
System\Windows\Documents\FixedDSBuilder.cs (5)
74List<BlockElement> blockElementList = storyFragme.BlockElementList; 75foreach (BlockElement be in blockElementList) 132private void _CreateFlowNodes(BlockElement be) 165List<BlockElement> blockElementList = sbe.BlockElementList; 166foreach (BlockElement bElement in blockElementList)