15 references to BaselineOffsetProperty
PresentationFramework (14)
MS\Internal\LayoutDump.cs (1)
494writer.WriteAttributeString("BaselineOffset", ((double)text.GetValue(TextBlock.BaselineOffsetProperty)).ToString("F", CultureInfo.InvariantCulture));
MS\Internal\PtsHost\RunClient.cs (2)
56double baselineOffsetValue = (double)UIElementIsland.Root.GetValue(TextBlock.BaselineOffsetProperty); 79double baselineOffsetValue = (double)UIElementIsland.Root.GetValue(TextBlock.BaselineOffsetProperty);
MS\Internal\Text\InlineObject.cs (2)
51double baselineOffsetValue = (double) Element.GetValue(TextBlock.BaselineOffsetProperty); 73double baselineOffsetValue = (double)Element.GetValue(TextBlock.BaselineOffsetProperty);
System\Windows\Controls\AccessText.cs (1)
396TextBlock.BaselineOffsetProperty.AddOwner(typeof(AccessText), new FrameworkPropertyMetadata(new PropertyChangedCallback(OnPropertyChanged)));
System\Windows\Controls\TextBlock.cs (7)
304BaselineOffsetProperty.OverrideMetadata( 528get { return (double)GetValue(BaselineOffsetProperty); } 529set { SetValue(BaselineOffsetProperty, value); } 541element.SetValue(BaselineOffsetProperty, value); 552return (double)element.GetValue(BaselineOffsetProperty); 1354CoerceValue(BaselineOffsetProperty); 4057object localBaseline = ReadLocalValue(BaselineOffsetProperty);
System\Windows\Documents\TextSchema.cs (1)
1195TextBlock.BaselineOffsetProperty,
System.Windows.Controls.Ribbon (1)
Microsoft\Windows\Controls\Ribbon\RibbonTwoLineText.cs (1)
79public static readonly DependencyProperty BaselineOffsetProperty = TextBlock.BaselineOffsetProperty.AddOwner(typeof(RibbonTwoLineText));