Block.LineHeight Property
Gets or sets the height of each line of content.
Assembly: PresentationFramework (in PresentationFramework.dll)
XMLNS for XAML: http://schemas.microsoft.com/winfx/2006/xaml/presentation, http://schemas.microsoft.com/netfx/2007/xaml/presentation
<object LineHeight="double"/> - or - <object LineHeight="qualifiedDouble"/> - or - <object LineHeight="Auto"/>
XAML Values
Property Value
Type: System.DoubleThe height of each line in device independent pixels, in the range of 0.0034 to 160000, or Double.NaN to determine the height automatically. The default is Double.NaN.
| Exception | Condition |
|---|---|
| ArgumentException | LineHeight is set to a non-positive value. |
A value of Double.NaN (equivalent to an attribute value of Auto) indicates that the line height is determined automatically from the current font characteristics.
Changing this value does not change the height of the associated text; rather, it changes the height of the line that contains the text. To change the size of the text, use the FontSize property.
In addition to this property, the layout of lines in a Block is affected by its LineStackingStrategy property.
The following example shows how to set the LineHeight attribute of a Block element.
<FlowDocument> <Paragraph TextAlignment="Left" Background="AliceBlue" FontSize="24" LineHeight="48" > One<LineBreak/> two two<LineBreak/> Three Three Three<LineBreak/> four four four four<LineBreak/> Five Five Five Five Five </Paragraph> </FlowDocument>
The following figure shows how the preceding example renders.

The following figure shows how the same FlowDocument renders with the default setting of LineHeight=Double.NaN.

The following example shows how to set the LineHeight property programmatically.
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.