2 instantiations of TextTreeObjectNode
PresentationFramework (2)
src\Framework\System\Windows\Documents\TextContainer.cs (1)
1205objectNode = new TextTreeObjectNode(embeddedObject);
src\Framework\System\Windows\Documents\TextTreeObjectNode.cs (1)
73clone = new TextTreeObjectNode(_embeddedElement);
14 references to TextTreeObjectNode
PresentationFramework (14)
src\Framework\System\Windows\Documents\TextContainer.cs (5)
1445else if (node is TextTreeTextNode || node is TextTreeObjectNode) 2093TextTreeObjectNode uiElementNode; 2108uiElementNode = node as TextTreeObjectNode; 2442TextTreeObjectNode uiElementNode; 2509uiElementNode = node as TextTreeObjectNode;
src\Framework\System\Windows\Documents\TextPointer.cs (3)
1840if (adjacentNode is TextTreeObjectNode) 1842element = ((TextTreeObjectNode)adjacentNode).EmbeddedElement; 4183else if (_node is TextTreeTextNode || _node is TextTreeObjectNode)
src\Framework\System\Windows\Documents\TextTreeDeleteContentUndoUnit.cs (3)
177TextTreeObjectNode objectNode; 192objectNode = node as TextTreeObjectNode; 267private TextTreeNode CopyObjectNode(TextTreeObjectNode objectNode, out ContentContainer container)
src\Framework\System\Windows\Documents\TextTreeNode.cs (2)
332TextTreeObjectNode objectNode; 338objectNode = this as TextTreeObjectNode;
src\Framework\System\Windows\Documents\TextTreeObjectNode.cs (1)
71TextTreeObjectNode clone;