15 references to BaselineOffsetProperty
PresentationFramework (14)
MS\Internal\LayoutDump.cs (1)
496
writer.WriteAttributeString("BaselineOffset", ((double)text.GetValue(TextBlock.
BaselineOffsetProperty
)).ToString("F", CultureInfo.InvariantCulture));
MS\Internal\PtsHost\RunClient.cs (2)
60
double baselineOffsetValue = (double)UIElementIsland.Root.GetValue(TextBlock.
BaselineOffsetProperty
);
83
double baselineOffsetValue = (double)UIElementIsland.Root.GetValue(TextBlock.
BaselineOffsetProperty
);
MS\Internal\Text\InlineObject.cs (2)
55
double baselineOffsetValue = (double) Element.GetValue(TextBlock.
BaselineOffsetProperty
);
77
double baselineOffsetValue = (double)Element.GetValue(TextBlock.
BaselineOffsetProperty
);
System\Windows\Controls\AccessText.cs (1)
399
TextBlock.
BaselineOffsetProperty
.AddOwner(typeof(AccessText), new FrameworkPropertyMetadata(new PropertyChangedCallback(OnPropertyChanged)));
System\Windows\Controls\TextBlock.cs (7)
317
BaselineOffsetProperty
.OverrideMetadata(
541
get { return (double)GetValue(
BaselineOffsetProperty
); }
542
set { SetValue(
BaselineOffsetProperty
, value); }
554
element.SetValue(
BaselineOffsetProperty
, value);
565
return (double)element.GetValue(
BaselineOffsetProperty
);
1370
CoerceValue(
BaselineOffsetProperty
);
4077
object localBaseline = ReadLocalValue(
BaselineOffsetProperty
);
System\Windows\Documents\TextSchema.cs (1)
1202
TextBlock.
BaselineOffsetProperty
,
System.Windows.Controls.Ribbon (1)
Microsoft\Windows\Controls\Ribbon\RibbonTwoLineText.cs (1)
83
public static readonly DependencyProperty BaselineOffsetProperty = TextBlock.
BaselineOffsetProperty
.AddOwner(typeof(RibbonTwoLineText));