15 references to BaselineOffsetProperty
PresentationFramework (14)
MS\Internal\LayoutDump.cs (1)
493
writer.WriteAttributeString("BaselineOffset", ((double)text.GetValue(TextBlock.
BaselineOffsetProperty
)).ToString("F", CultureInfo.InvariantCulture));
MS\Internal\PtsHost\RunClient.cs (2)
57
double baselineOffsetValue = (double)UIElementIsland.Root.GetValue(TextBlock.
BaselineOffsetProperty
);
80
double baselineOffsetValue = (double)UIElementIsland.Root.GetValue(TextBlock.
BaselineOffsetProperty
);
MS\Internal\Text\InlineObject.cs (2)
52
double baselineOffsetValue = (double) Element.GetValue(TextBlock.
BaselineOffsetProperty
);
74
double baselineOffsetValue = (double)Element.GetValue(TextBlock.
BaselineOffsetProperty
);
System\Windows\Controls\AccessText.cs (1)
397
TextBlock.
BaselineOffsetProperty
.AddOwner(typeof(AccessText), new FrameworkPropertyMetadata(new PropertyChangedCallback(OnPropertyChanged)));
System\Windows\Controls\TextBlock.cs (7)
307
BaselineOffsetProperty
.OverrideMetadata(
531
get { return (double)GetValue(
BaselineOffsetProperty
); }
532
set { SetValue(
BaselineOffsetProperty
, value); }
544
element.SetValue(
BaselineOffsetProperty
, value);
555
return (double)element.GetValue(
BaselineOffsetProperty
);
1360
CoerceValue(
BaselineOffsetProperty
);
4067
object localBaseline = ReadLocalValue(
BaselineOffsetProperty
);
System\Windows\Documents\TextSchema.cs (1)
1201
TextBlock.
BaselineOffsetProperty
,
System.Windows.Controls.Ribbon (1)
Microsoft\Windows\Controls\Ribbon\RibbonTwoLineText.cs (1)
80
public static readonly DependencyProperty BaselineOffsetProperty = TextBlock.
BaselineOffsetProperty
.AddOwner(typeof(RibbonTwoLineText));