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