9 references to TableCellStructure
PresentationFramework (9)
System\Windows\Documents\DocumentStructures\SemanticBasicElement.cs (8)
358public class TableRowStructure : SemanticBasicElement, IAddChild, IEnumerable<TableCellStructure>, IEnumerable 368public void Add(TableCellStructure tableCell) 376if (value is TableCellStructure) 378_elementList.Add((TableCellStructure)value); 381throw new ArgumentException(SR.Format(SR.UnexpectedParameterType, value.GetType(), typeof(TableCellStructure)), nameof(value)); 386IEnumerator<TableCellStructure> IEnumerable<TableCellStructure>.GetEnumerator() 393return ((IEnumerable<TableCellStructure>)this).GetEnumerator();
System\Windows\Markup\RestrictiveXamlXmlReader.cs (1)
225typeof(System.Windows.Documents.DocumentStructures.TableCellStructure),