6 references to PreviousElement
PresentationFramework (6)
System\Windows\Documents\Block.cs (1)
73return this.PreviousElement as Block;
System\Windows\Documents\Inline.cs (1)
82return this.PreviousElement as Inline;
System\Windows\Documents\ListItem.cs (1)
130return this.PreviousElement as ListItem;
System\Windows\Documents\TextElementCollection.cs (2)
797newElementCache = (TextElementType)element.PreviousElement; 859element = (TextElementType)(forward ? element.NextElement : element.PreviousElement);
System\Windows\Documents\TextRangeEdit.cs (1)
1981Inline previousSibling = (Inline)searchInline.PreviousElement;