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