6 references to PreviousElement
PresentationFramework (6)
System\Windows\Documents\Block.cs (1)
70
return this.
PreviousElement
as Block;
System\Windows\Documents\Inline.cs (1)
81
return this.
PreviousElement
as Inline;
System\Windows\Documents\ListItem.cs (1)
128
return this.
PreviousElement
as ListItem;
System\Windows\Documents\TextElementCollection.cs (2)
794
newElementCache = (TextElementType)element.
PreviousElement
;
856
element = (TextElementType)(forward ? element.NextElement : element.
PreviousElement
);
System\Windows\Documents\TextRangeEdit.cs (1)
1978
Inline previousSibling = (Inline)searchInline.
PreviousElement
;