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