3 types derived from BlockElement
PresentationFramework (3)
System\Windows\Documents\DocumentStructures\NamedElement.cs (2)
29public class StoryBreak : BlockElement 36public class NamedElement : BlockElement
System\Windows\Documents\DocumentStructures\SemanticBasicElement.cs (1)
17public class SemanticBasicElement : BlockElement
37 references to BlockElement
PresentationFramework (37)
System\Windows\Documents\DocumentStructures\SemanticBasicElement.cs (23)
24_elementList = new List<BlockElement>(); 27internal List<BlockElement> BlockElementList 38internal List<BlockElement> _elementList; 44public class SectionStructure : SemanticBasicElement, IAddChild, IEnumerable<BlockElement>, IEnumerable 54public void Add(BlockElement element) 65_elementList.Add((BlockElement)value); 76IEnumerator<BlockElement> IEnumerable<BlockElement>.GetEnumerator() 83return ((IEnumerable<BlockElement>)this).GetEnumerator(); 110_elementList.Add((BlockElement)value); 149_elementList.Add((BlockElement)value); 219public class ListItemStructure : SemanticBasicElement, IAddChild, IEnumerable<BlockElement>, IEnumerable 229public void Add(BlockElement element) 239_elementList.Add((BlockElement)value); 248IEnumerator<BlockElement> IEnumerable<BlockElement>.GetEnumerator() 255return ((IEnumerable<BlockElement>)this).GetEnumerator(); 400public class TableCellStructure : SemanticBasicElement, IAddChild, IEnumerable<BlockElement>, IEnumerable 412public void Add(BlockElement element) 422_elementList.Add((BlockElement)value); 431IEnumerator<BlockElement> IEnumerable<BlockElement>.GetEnumerator() 438return ((IEnumerable<BlockElement>)this).GetEnumerator();
System\Windows\Documents\DocumentStructures\StoryFragments.cs (9)
76public class StoryFragment : IAddChild, IEnumerable<BlockElement>, IEnumerable 83_elementList = new List<BlockElement>(); 86public void Add(BlockElement element) 102_elementList.Add( (BlockElement) value); 112IEnumerator<BlockElement> IEnumerable<BlockElement>.GetEnumerator() 119return ((IEnumerable<BlockElement>)this).GetEnumerator(); 167internal List<BlockElement> BlockElementList 175private List<BlockElement> _elementList;
System\Windows\Documents\FixedDSBuilder.cs (5)
73List<BlockElement> blockElementList = storyFragme.BlockElementList; 74foreach (BlockElement be in blockElementList) 131private void _CreateFlowNodes(BlockElement be) 164List<BlockElement> blockElementList = sbe.BlockElementList; 165foreach (BlockElement bElement in blockElementList)