9 references to TableCellStructure
PresentationFramework (9)
System\Windows\Documents\DocumentStructures\SemanticBasicElement.cs (8)
359public class TableRowStructure : SemanticBasicElement, IAddChild, IEnumerable<TableCellStructure>, IEnumerable 369public void Add(TableCellStructure tableCell) 377if (value is TableCellStructure) 379_elementList.Add((TableCellStructure)value); 382throw new ArgumentException(SR.Format(SR.UnexpectedParameterType, value.GetType(), typeof(TableCellStructure)), nameof(value)); 387IEnumerator<TableCellStructure> IEnumerable<TableCellStructure>.GetEnumerator() 394return ((IEnumerable<TableCellStructure>)this).GetEnumerator();
System\Windows\Markup\RestrictiveXamlXmlReader.cs (1)
226typeof(System.Windows.Documents.DocumentStructures.TableCellStructure),