1 write to _host
PresentationFramework (1)
src\Framework\MS\Internal\Documents\TextBoxView.cs (1)
48
_host
= host;
42 references to _host
PresentationFramework (42)
src\Framework\MS\Internal\Documents\TextBoxView.cs (42)
698
double endOfParaGlyphWidth = ((Control)
_host
).FontSize * CaretElement.c_endOfParaMagicMultiplier;
749
ITextPointer endOfLinePosition =
_host
.TextContainer.CreatePointerAtOffset(_lineMetrics[lineIndex].EndOffset, LogicalDirection.Backward);
789
nextLinePosition =
_host
.TextContainer.CreatePointerAtOffset(_lineMetrics[lineIndex + linesMoved].Offset, LogicalDirection.Forward);
868
else if (position.Offset ==
_host
.TextContainer.SymbolCount && direction == LogicalDirection.Forward)
927
ITextPointer nextCaretUnitPosition =
_host
.TextContainer.CreatePointerAtOffset(nextCharacterHit.FirstCharacterIndex + nextCharacterHit.TrailingLength, logicalDirection);
975
ITextPointer backspaceUnitPosition =
_host
.TextContainer.CreatePointerAtOffset(backspaceCharacterHit.FirstCharacterIndex + backspaceCharacterHit.TrailingLength, logicalDirection);
990
ITextPointer start =
_host
.TextContainer.CreatePointerAtOffset(_lineMetrics[lineIndex].Offset, LogicalDirection.Forward);
991
ITextPointer end =
_host
.TextContainer.CreatePointerAtOffset(_lineMetrics[lineIndex].Offset + _lineMetrics[lineIndex].ContentLength, LogicalDirection.Forward);
1091
if (position.TextContainer !=
_host
.TextContainer)
1225
System.Diagnostics.Debug.Assert(
_host
!= null &&
_host
.TextContainer != null &&
_host
.TextContainer.Highlights != null,
1228
_host
.TextContainer.Changing -= new EventHandler(OnTextContainerChanging);
1229
_host
.TextContainer.Change -= new TextContainerChangeEventHandler(OnTextContainerChange);
1230
_host
.TextContainer.Highlights.Changed -= new HighlightChangedEventHandler(OnHighlightChanged);
1250
return
_host
;
1272
return
_host
.TextContainer;
1309
ITextPointer start =
_host
.TextContainer.CreatePointerAtOffset(_lineMetrics[0].Offset, LogicalDirection.Backward);
1310
ITextPointer end =
_host
.TextContainer.CreatePointerAtOffset(_lineMetrics[_lineMetrics.Count-1].EndOffset, LogicalDirection.Forward);
1400
_host
.TextContainer.Changing += new EventHandler(OnTextContainerChanging);
1401
_host
.TextContainer.Change += new TextContainerChangeEventHandler(OnTextContainerChange);
1402
_host
.TextContainer.Highlights.Changed += new HighlightChangedEventHandler(OnHighlightChanged);
1419
TextProperties defaultTextProperties = new TextProperties((Control)
_host
,
_host
.IsTypographyDefaultValue);
1423
return new LineProperties((Control)
_host
, (Control)
_host
, defaultTextProperties, null, this.CalculatedTextAlignment);
1560
Control hostControl = (Control)
_host
;
1735
Control hostControl = (Control)
_host
;
1763
return
_host
.TextContainer.CreatePointerAtOffset(charIndex.FirstCharacterIndex + charIndex.TrailingLength, logicalDirection);
1871
double endOfParaGlyphWidth = ((Control)
_host
).FontSize * CaretElement.c_endOfParaMagicMultiplier;
1876
&& ((bool)((Control)
_host
).GetValue(TextBoxBase.IsInactiveSelectionHighlightEnabledProperty)
1877
|| (bool)((Control)
_host
).GetValue(TextBoxBase.IsSelectionActiveProperty));
1901
var selection =
_host
.TextContainer.TextSelection;
1936
int endOffset = Math.Min(range.StartIndex + range.PositionsAdded,
_host
.TextContainer.SymbolCount);
2055
ITextPointer position =
_host
.TextContainer.CreatePointerAtOffset(unclippedStartOffset, LogicalDirection.Backward);
2100
ITextPointer endOfLinePosition =
_host
.TextContainer.CreatePointerAtOffset(endOffset, LogicalDirection.Backward);
2151
ITextPointer position =
_host
.TextContainer.CreatePointerAtOffset(unclippedStartOffset, LogicalDirection.Backward);
2179
ITextPointer endOfLinePosition =
_host
.TextContainer.CreatePointerAtOffset(endOffset, LogicalDirection.Backward);
2247
if ((ScrollBarVisibility)((Control)
_host
).GetValue(ScrollViewer.VerticalScrollBarVisibilityProperty) == ScrollBarVisibility.Auto)
2902
return position.TextContainer ==
_host
.TextContainer &&
3024
switch (((Control)
_host
).VerticalContentAlignment)
3060
Control host = (Control)
_host
;