6 references to PreviousElement
PresentationFramework (6)
System\Windows\Documents\Block.cs (1)
71return this.PreviousElement as Block;
System\Windows\Documents\Inline.cs (1)
82return this.PreviousElement as Inline;
System\Windows\Documents\ListItem.cs (1)
129return this.PreviousElement as ListItem;
System\Windows\Documents\TextElementCollection.cs (2)
795newElementCache = (TextElementType)element.PreviousElement; 857element = (TextElementType)(forward ? element.NextElement : element.PreviousElement);
System\Windows\Documents\TextRangeEdit.cs (1)
1979Inline previousSibling = (Inline)searchInline.PreviousElement;