11 references to FirstChild
PresentationFramework (11)
src\Framework\MS\Internal\PtsHost\UIElementParagraph.cs (2)
543if (figure.Blocks.FirstChild == figure.Blocks.LastChild && 544figure.Blocks.FirstChild == Element)
src\Framework\System\Windows\Documents\BlockCollection.cs (1)
54return this.FirstChild;
src\Framework\System\Windows\Documents\InlineCollection.cs (1)
128return this.FirstChild;
src\Framework\System\Windows\Documents\ListItemCollection.cs (1)
51return this.FirstChild;
src\Framework\System\Windows\Documents\TextElementCollection.cs (6)
133for (element = this.FirstChild; element != null; element = (TextElementType)element.NextElement) 170element = this.FirstChild; 500if (this.FirstChild == null) 653for (TextElementType element = (TextElementType)this.FirstChild; element != null; element = (TextElementType)element.NextElement) 887element = this.FirstChild; 942element = this.FirstChild;