1 write to _textElementNode
PresentationFramework (1)
System\Windows\Documents\TextElement.cs (1)
1300_textElementNode = value;
37 references to _textElementNode
PresentationFramework (37)
System\Windows\Documents\TextElement.cs (37)
113if (startNode == _textElementNode) 115startNode = _textElementNode.GetContainingNode(); 117if (endNode == _textElementNode) 119endNode = _textElementNode.GetContainingNode(); 288TextPointer contentStart = new TextPointer(tree, _textElementNode, ElementEdge.AfterStart, LogicalDirection.Backward); 291TextPointer contentEnd = new TextPointer(tree, _textElementNode, ElementEdge.BeforeEnd, LogicalDirection.Forward); 314elementStart = new TextPointer(tree, _textElementNode, ElementEdge.BeforeStart, LogicalDirection.Forward); 327return new StaticTextPointer(tree, _textElementNode, 0); 347contentStart = new TextPointer(tree, _textElementNode, ElementEdge.AfterStart, LogicalDirection.Backward); 360return new StaticTextPointer(tree, _textElementNode, 1); 380contentEnd = new TextPointer(tree, _textElementNode, ElementEdge.BeforeEnd, LogicalDirection.Forward); 393return new StaticTextPointer(tree, _textElementNode, _textElementNode.SymbolCount - 1); 421elementEnd = new TextPointer(tree, _textElementNode, ElementEdge.AfterEnd, LogicalDirection.Backward); 434return new StaticTextPointer(tree, _textElementNode, _textElementNode.SymbolCount); 994beforeStart = new TextPointer(tree, _textElementNode, ElementEdge.BeforeStart, LogicalDirection.Forward); 1006tree.AddChange(beforeStart, _textElementNode.SymbolCount, _textElementNode.IMECharCount, 1210if (_textElementNode == null) 1213return (_textElementNode.ContainedNode == null); 1224return _textElementNode != null; 1236return _textElementNode.GetSymbolOffset(EnsureTextContainer().Generation) - 1; 1248return _textElementNode.GetSymbolOffset(EnsureTextContainer().Generation); 1260return _textElementNode.GetSymbolOffset(EnsureTextContainer().Generation) + _textElementNode.SymbolCount - 2; 1272return _textElementNode.GetSymbolOffset(EnsureTextContainer().Generation) + _textElementNode.SymbolCount - 1; 1284return this.IsInTree ? _textElementNode.SymbolCount : 2; 1295return _textElementNode; 1410TextTreeTextElementNode node = _textElementNode.GetNextNode() as TextTreeTextElementNode; 1428TextTreeTextElementNode node = _textElementNode.GetPreviousNode() as TextTreeTextElementNode; 1446TextTreeTextElementNode node = _textElementNode.GetFirstContainedNode() as TextTreeTextElementNode; 1464TextTreeTextElementNode node = _textElementNode.GetLastContainedNode() as TextTreeTextElementNode; 1498tree.InsertTextInternal(new TextPointer(tree, _textElementNode, ElementEdge.BeforeEnd), textData); 1532position = new TextPointer(tree, _textElementNode, ElementEdge.BeforeEnd); 1550tree = _textElementNode.GetTextTree();