1 write to _textElementNode
PresentationFramework (1)
src\Framework\System\Windows\Documents\TextElement.cs (1)
1363_textElementNode = value;
37 references to _textElementNode
PresentationFramework (37)
src\Framework\System\Windows\Documents\TextElement.cs (37)
125if (startNode == _textElementNode) 127startNode = _textElementNode.GetContainingNode(); 129if (endNode == _textElementNode) 131endNode = _textElementNode.GetContainingNode(); 308TextPointer contentStart = new TextPointer(tree, _textElementNode, ElementEdge.AfterStart, LogicalDirection.Backward); 311TextPointer contentEnd = new TextPointer(tree, _textElementNode, ElementEdge.BeforeEnd, LogicalDirection.Forward); 334elementStart = new TextPointer(tree, _textElementNode, ElementEdge.BeforeStart, LogicalDirection.Forward); 347return new StaticTextPointer(tree, _textElementNode, 0); 367contentStart = new TextPointer(tree, _textElementNode, ElementEdge.AfterStart, LogicalDirection.Backward); 380return new StaticTextPointer(tree, _textElementNode, 1); 400contentEnd = new TextPointer(tree, _textElementNode, ElementEdge.BeforeEnd, LogicalDirection.Forward); 413return new StaticTextPointer(tree, _textElementNode, _textElementNode.SymbolCount - 1); 441elementEnd = new TextPointer(tree, _textElementNode, ElementEdge.AfterEnd, LogicalDirection.Backward); 454return new StaticTextPointer(tree, _textElementNode, _textElementNode.SymbolCount); 1054beforeStart = new TextPointer(tree, _textElementNode, ElementEdge.BeforeStart, LogicalDirection.Forward); 1066tree.AddChange(beforeStart, _textElementNode.SymbolCount, _textElementNode.IMECharCount, 1273if (_textElementNode == null) 1276return (_textElementNode.ContainedNode == null); 1287return _textElementNode != null; 1299return _textElementNode.GetSymbolOffset(EnsureTextContainer().Generation) - 1; 1311return _textElementNode.GetSymbolOffset(EnsureTextContainer().Generation); 1323return _textElementNode.GetSymbolOffset(EnsureTextContainer().Generation) + _textElementNode.SymbolCount - 2; 1335return _textElementNode.GetSymbolOffset(EnsureTextContainer().Generation) + _textElementNode.SymbolCount - 1; 1347return this.IsInTree ? _textElementNode.SymbolCount : 2; 1358return _textElementNode; 1473TextTreeTextElementNode node = _textElementNode.GetNextNode() as TextTreeTextElementNode; 1491TextTreeTextElementNode node = _textElementNode.GetPreviousNode() as TextTreeTextElementNode; 1509TextTreeTextElementNode node = _textElementNode.GetFirstContainedNode() as TextTreeTextElementNode; 1527TextTreeTextElementNode node = _textElementNode.GetLastContainedNode() as TextTreeTextElementNode; 1564tree.InsertTextInternal(new TextPointer(tree, _textElementNode, ElementEdge.BeforeEnd), textData); 1601position = new TextPointer(tree, _textElementNode, ElementEdge.BeforeEnd); 1619tree = _textElementNode.GetTextTree();