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