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