9 references to TableCellStructure
PresentationFramework (9)
System\Windows\Documents\DocumentStructures\SemanticBasicElement.cs (8)
370public class TableRowStructure : SemanticBasicElement, IAddChild, IEnumerable<TableCellStructure>, IEnumerable 380public void Add(TableCellStructure tableCell) 388if (value is TableCellStructure) 390_elementList.Add((TableCellStructure)value); 393throw new ArgumentException(SR.Format(SR.UnexpectedParameterType, value.GetType(), typeof(TableCellStructure)), nameof(value)); 398IEnumerator<TableCellStructure> IEnumerable<TableCellStructure>.GetEnumerator() 405return ((IEnumerable<TableCellStructure>)this).GetEnumerator();
System\Windows\Markup\RestrictiveXamlXmlReader.cs (1)
227typeof(System.Windows.Documents.DocumentStructures.TableCellStructure),