8 references to TableRowStructure
PresentationFramework (8)
src\Framework\System\Windows\Documents\DocumentStructures\SemanticBasicElement.cs (8)
354
public class TableRowGroupStructure : SemanticBasicElement, IAddChild, IEnumerable<
TableRowStructure
>, IEnumerable
364
public void Add(
TableRowStructure
tableRow)
375
if (value is
TableRowStructure
)
377
_elementList.Add((
TableRowStructure
)value);
380
throw new ArgumentException(SR.Get(SRID.UnexpectedParameterType, value.GetType(), typeof(
TableRowStructure
)), "value");
386
IEnumerator<
TableRowStructure
> IEnumerable<
TableRowStructure
>.GetEnumerator()
393
return ((IEnumerable<
TableRowStructure
>)this).GetEnumerator();