9 references to TableCellStructure
PresentationFramework (9)
System\Windows\Documents\DocumentStructures\SemanticBasicElement.cs (8)
370
public class TableRowStructure : SemanticBasicElement, IAddChild, IEnumerable<
TableCellStructure
>, IEnumerable
380
public void Add(
TableCellStructure
tableCell)
388
if (value is
TableCellStructure
)
390
_elementList.Add((
TableCellStructure
)value);
393
throw new ArgumentException(SR.Format(SR.UnexpectedParameterType, value.GetType(), typeof(
TableCellStructure
)), nameof(value));
398
IEnumerator<
TableCellStructure
> IEnumerable<
TableCellStructure
>.GetEnumerator()
405
return ((IEnumerable<
TableCellStructure
>)this).GetEnumerator();
System\Windows\Markup\RestrictiveXamlXmlReader.cs (1)
227
typeof(System.Windows.Documents.DocumentStructures.
TableCellStructure
),