1 write to _textElementNode
PresentationFramework (1)
System\Windows\Documents\TextElement.cs (1)
1299_textElementNode = value;
37 references to _textElementNode
PresentationFramework (37)
System\Windows\Documents\TextElement.cs (37)
112if (startNode == _textElementNode) 114startNode = _textElementNode.GetContainingNode(); 116if (endNode == _textElementNode) 118endNode = _textElementNode.GetContainingNode(); 287TextPointer contentStart = new TextPointer(tree, _textElementNode, ElementEdge.AfterStart, LogicalDirection.Backward); 290TextPointer contentEnd = new TextPointer(tree, _textElementNode, ElementEdge.BeforeEnd, LogicalDirection.Forward); 313elementStart = new TextPointer(tree, _textElementNode, ElementEdge.BeforeStart, LogicalDirection.Forward); 326return new StaticTextPointer(tree, _textElementNode, 0); 346contentStart = new TextPointer(tree, _textElementNode, ElementEdge.AfterStart, LogicalDirection.Backward); 359return new StaticTextPointer(tree, _textElementNode, 1); 379contentEnd = new TextPointer(tree, _textElementNode, ElementEdge.BeforeEnd, LogicalDirection.Forward); 392return new StaticTextPointer(tree, _textElementNode, _textElementNode.SymbolCount - 1); 420elementEnd = new TextPointer(tree, _textElementNode, ElementEdge.AfterEnd, LogicalDirection.Backward); 433return new StaticTextPointer(tree, _textElementNode, _textElementNode.SymbolCount); 993beforeStart = new TextPointer(tree, _textElementNode, ElementEdge.BeforeStart, LogicalDirection.Forward); 1005tree.AddChange(beforeStart, _textElementNode.SymbolCount, _textElementNode.IMECharCount, 1209if (_textElementNode == null) 1212return (_textElementNode.ContainedNode == null); 1223return _textElementNode != null; 1235return _textElementNode.GetSymbolOffset(EnsureTextContainer().Generation) - 1; 1247return _textElementNode.GetSymbolOffset(EnsureTextContainer().Generation); 1259return _textElementNode.GetSymbolOffset(EnsureTextContainer().Generation) + _textElementNode.SymbolCount - 2; 1271return _textElementNode.GetSymbolOffset(EnsureTextContainer().Generation) + _textElementNode.SymbolCount - 1; 1283return this.IsInTree ? _textElementNode.SymbolCount : 2; 1294return _textElementNode; 1409TextTreeTextElementNode node = _textElementNode.GetNextNode() as TextTreeTextElementNode; 1427TextTreeTextElementNode node = _textElementNode.GetPreviousNode() as TextTreeTextElementNode; 1445TextTreeTextElementNode node = _textElementNode.GetFirstContainedNode() as TextTreeTextElementNode; 1463TextTreeTextElementNode node = _textElementNode.GetLastContainedNode() as TextTreeTextElementNode; 1497tree.InsertTextInternal(new TextPointer(tree, _textElementNode, ElementEdge.BeforeEnd), textData); 1531position = new TextPointer(tree, _textElementNode, ElementEdge.BeforeEnd); 1549tree = _textElementNode.GetTextTree();