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