8 references to TableCellStructure
PresentationFramework (8)
src\Framework\System\Windows\Documents\DocumentStructures\SemanticBasicElement.cs (8)
400public class TableRowStructure : SemanticBasicElement, IAddChild, IEnumerable<TableCellStructure>, IEnumerable 410public void Add(TableCellStructure tableCell) 421if (value is TableCellStructure) 423_elementList.Add((TableCellStructure)value); 426throw new ArgumentException(SR.Get(SRID.UnexpectedParameterType, value.GetType(), typeof(TableCellStructure)), "value"); 431IEnumerator<TableCellStructure> IEnumerable<TableCellStructure>.GetEnumerator() 438return ((IEnumerable<TableCellStructure>)this).GetEnumerator();