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