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