1 write to _textElementNode
PresentationFramework (1)
System\Windows\Documents\TextElement.cs (1)
1318_textElementNode = value;
37 references to _textElementNode
PresentationFramework (37)
System\Windows\Documents\TextElement.cs (37)
120if (startNode == _textElementNode) 122startNode = _textElementNode.GetContainingNode(); 124if (endNode == _textElementNode) 126endNode = _textElementNode.GetContainingNode(); 303TextPointer contentStart = new TextPointer(tree, _textElementNode, ElementEdge.AfterStart, LogicalDirection.Backward); 306TextPointer contentEnd = new TextPointer(tree, _textElementNode, ElementEdge.BeforeEnd, LogicalDirection.Forward); 329elementStart = new TextPointer(tree, _textElementNode, ElementEdge.BeforeStart, LogicalDirection.Forward); 342return new StaticTextPointer(tree, _textElementNode, 0); 362contentStart = new TextPointer(tree, _textElementNode, ElementEdge.AfterStart, LogicalDirection.Backward); 375return new StaticTextPointer(tree, _textElementNode, 1); 395contentEnd = new TextPointer(tree, _textElementNode, ElementEdge.BeforeEnd, LogicalDirection.Forward); 408return new StaticTextPointer(tree, _textElementNode, _textElementNode.SymbolCount - 1); 436elementEnd = new TextPointer(tree, _textElementNode, ElementEdge.AfterEnd, LogicalDirection.Backward); 449return new StaticTextPointer(tree, _textElementNode, _textElementNode.SymbolCount); 1009beforeStart = new TextPointer(tree, _textElementNode, ElementEdge.BeforeStart, LogicalDirection.Forward); 1021tree.AddChange(beforeStart, _textElementNode.SymbolCount, _textElementNode.IMECharCount, 1228if (_textElementNode == null) 1231return (_textElementNode.ContainedNode == null); 1242return _textElementNode != null; 1254return _textElementNode.GetSymbolOffset(EnsureTextContainer().Generation) - 1; 1266return _textElementNode.GetSymbolOffset(EnsureTextContainer().Generation); 1278return _textElementNode.GetSymbolOffset(EnsureTextContainer().Generation) + _textElementNode.SymbolCount - 2; 1290return _textElementNode.GetSymbolOffset(EnsureTextContainer().Generation) + _textElementNode.SymbolCount - 1; 1302return this.IsInTree ? _textElementNode.SymbolCount : 2; 1313return _textElementNode; 1428TextTreeTextElementNode node = _textElementNode.GetNextNode() as TextTreeTextElementNode; 1446TextTreeTextElementNode node = _textElementNode.GetPreviousNode() as TextTreeTextElementNode; 1464TextTreeTextElementNode node = _textElementNode.GetFirstContainedNode() as TextTreeTextElementNode; 1482TextTreeTextElementNode node = _textElementNode.GetLastContainedNode() as TextTreeTextElementNode; 1516tree.InsertTextInternal(new TextPointer(tree, _textElementNode, ElementEdge.BeforeEnd), textData); 1550position = new TextPointer(tree, _textElementNode, ElementEdge.BeforeEnd); 1568tree = _textElementNode.GetTextTree();