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