13 references to LineHeightProperty
PresentationFramework (13)
src\Framework\MS\Internal\Text\DynamicPropertyReader.cs (1)
212double lineHeight = (double)d.GetValue(Block.LineHeightProperty);
src\Framework\MS\Internal\Text\LineProperties.cs (1)
134_lineHeight = (double)element.GetValue(Block.LineHeightProperty);
src\Framework\System\Windows\Controls\AccessText.cs (1)
311Block.LineHeightProperty.AddOwner(typeof(AccessText));
src\Framework\System\Windows\Controls\TextBlock.cs (1)
992Block.LineHeightProperty.AddOwner(typeof(TextBlock));
src\Framework\System\Windows\Documents\AnchoredBlock.cs (1)
192Block.LineHeightProperty.AddOwner(typeof(AnchoredBlock));
src\Framework\System\Windows\Documents\Block.cs (4)
299get { return (double)GetValue(LineHeightProperty); } 300set { SetValue(LineHeightProperty, value); } 315element.SetValue(LineHeightProperty, value); 330return (double)element.GetValue(LineHeightProperty);
src\Framework\System\Windows\Documents\FlowDocument.cs (1)
374Block.LineHeightProperty.AddOwner(_typeofThis);
src\Framework\System\Windows\Documents\ListItem.cs (1)
251Block.LineHeightProperty.AddOwner(typeof(ListItem));
src\Framework\System\Windows\Documents\TableCell.cs (1)
282Block.LineHeightProperty.AddOwner(typeof(TableCell));
src\Framework\System\Windows\Documents\TextSchema.cs (1)
66Block.LineHeightProperty,