3 types derived from BlockElement
PresentationFramework (3)
System\Windows\Documents\DocumentStructures\NamedElement.cs (2)
42public class StoryBreak : BlockElement 49public class NamedElement : BlockElement
System\Windows\Documents\DocumentStructures\SemanticBasicElement.cs (1)
29public class SemanticBasicElement : BlockElement
37 references to BlockElement
PresentationFramework (37)
System\Windows\Documents\DocumentStructures\SemanticBasicElement.cs (23)
36_elementList = new List<BlockElement>(); 39internal List<BlockElement> BlockElementList 50internal List<BlockElement> _elementList; 56public class SectionStructure : SemanticBasicElement, IAddChild, IEnumerable<BlockElement>, IEnumerable 66public void Add(BlockElement element) 77_elementList.Add((BlockElement)value); 88IEnumerator<BlockElement> IEnumerable<BlockElement>.GetEnumerator() 95return ((IEnumerable<BlockElement>)this).GetEnumerator(); 122_elementList.Add((BlockElement)value); 161_elementList.Add((BlockElement)value); 231public class ListItemStructure : SemanticBasicElement, IAddChild, IEnumerable<BlockElement>, IEnumerable 241public void Add(BlockElement element) 251_elementList.Add((BlockElement)value); 260IEnumerator<BlockElement> IEnumerable<BlockElement>.GetEnumerator() 267return ((IEnumerable<BlockElement>)this).GetEnumerator(); 412public class TableCellStructure : SemanticBasicElement, IAddChild, IEnumerable<BlockElement>, IEnumerable 424public void Add(BlockElement element) 434_elementList.Add((BlockElement)value); 443IEnumerator<BlockElement> IEnumerable<BlockElement>.GetEnumerator() 450return ((IEnumerable<BlockElement>)this).GetEnumerator();
System\Windows\Documents\DocumentStructures\StoryFragments.cs (9)
88public class StoryFragment : IAddChild, IEnumerable<BlockElement>, IEnumerable 95_elementList = new List<BlockElement>(); 98public void Add(BlockElement element) 114_elementList.Add( (BlockElement) value); 124IEnumerator<BlockElement> IEnumerable<BlockElement>.GetEnumerator() 131return ((IEnumerable<BlockElement>)this).GetEnumerator(); 179internal List<BlockElement> BlockElementList 187private List<BlockElement> _elementList;
System\Windows\Documents\FixedDSBuilder.cs (5)
82List<BlockElement> blockElementList = storyFragme.BlockElementList; 83foreach (BlockElement be in blockElementList) 140private void _CreateFlowNodes(BlockElement be) 173List<BlockElement> blockElementList = sbe.BlockElementList; 174foreach (BlockElement bElement in blockElementList)