1 write to _textElementNode
PresentationFramework (1)
System\Windows\Documents\TextElement.cs (1)
1317_textElementNode = value;
37 references to _textElementNode
PresentationFramework (37)
System\Windows\Documents\TextElement.cs (37)
119if (startNode == _textElementNode) 121startNode = _textElementNode.GetContainingNode(); 123if (endNode == _textElementNode) 125endNode = _textElementNode.GetContainingNode(); 302TextPointer contentStart = new TextPointer(tree, _textElementNode, ElementEdge.AfterStart, LogicalDirection.Backward); 305TextPointer contentEnd = new TextPointer(tree, _textElementNode, ElementEdge.BeforeEnd, LogicalDirection.Forward); 328elementStart = new TextPointer(tree, _textElementNode, ElementEdge.BeforeStart, LogicalDirection.Forward); 341return new StaticTextPointer(tree, _textElementNode, 0); 361contentStart = new TextPointer(tree, _textElementNode, ElementEdge.AfterStart, LogicalDirection.Backward); 374return new StaticTextPointer(tree, _textElementNode, 1); 394contentEnd = new TextPointer(tree, _textElementNode, ElementEdge.BeforeEnd, LogicalDirection.Forward); 407return new StaticTextPointer(tree, _textElementNode, _textElementNode.SymbolCount - 1); 435elementEnd = new TextPointer(tree, _textElementNode, ElementEdge.AfterEnd, LogicalDirection.Backward); 448return new StaticTextPointer(tree, _textElementNode, _textElementNode.SymbolCount); 1008beforeStart = new TextPointer(tree, _textElementNode, ElementEdge.BeforeStart, LogicalDirection.Forward); 1020tree.AddChange(beforeStart, _textElementNode.SymbolCount, _textElementNode.IMECharCount, 1227if (_textElementNode == null) 1230return (_textElementNode.ContainedNode == null); 1241return _textElementNode != null; 1253return _textElementNode.GetSymbolOffset(EnsureTextContainer().Generation) - 1; 1265return _textElementNode.GetSymbolOffset(EnsureTextContainer().Generation); 1277return _textElementNode.GetSymbolOffset(EnsureTextContainer().Generation) + _textElementNode.SymbolCount - 2; 1289return _textElementNode.GetSymbolOffset(EnsureTextContainer().Generation) + _textElementNode.SymbolCount - 1; 1301return this.IsInTree ? _textElementNode.SymbolCount : 2; 1312return _textElementNode; 1427TextTreeTextElementNode node = _textElementNode.GetNextNode() as TextTreeTextElementNode; 1445TextTreeTextElementNode node = _textElementNode.GetPreviousNode() as TextTreeTextElementNode; 1463TextTreeTextElementNode node = _textElementNode.GetFirstContainedNode() as TextTreeTextElementNode; 1481TextTreeTextElementNode node = _textElementNode.GetLastContainedNode() as TextTreeTextElementNode; 1515tree.InsertTextInternal(new TextPointer(tree, _textElementNode, ElementEdge.BeforeEnd), textData); 1549position = new TextPointer(tree, _textElementNode, ElementEdge.BeforeEnd); 1567tree = _textElementNode.GetTextTree();