6 references to PreviousElement
PresentationFramework (6)
src\Framework\System\Windows\Documents\Block.cs (1)
73return this.PreviousElement as Block;
src\Framework\System\Windows\Documents\Inline.cs (1)
87return this.PreviousElement as Inline;
src\Framework\System\Windows\Documents\ListItem.cs (1)
137return this.PreviousElement as ListItem;
src\Framework\System\Windows\Documents\TextElementCollection.cs (2)
830newElementCache = (TextElementType)element.PreviousElement; 892element = (TextElementType)(forward ? element.NextElement : element.PreviousElement);
src\Framework\System\Windows\Documents\TextRangeEdit.cs (1)
1983Inline previousSibling = (Inline)searchInline.PreviousElement;