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