Block.LineStackingStrategy Property

Definition

Gets or sets a value that indicates how a line box is determined for each line of text in the Block.

C#
public LineStackingStrategy LineStackingStrategy { get; set; }
XAML
<Paragraph LineStackingStrategy="BlockLineHeight"/>
-or-
<Paragraph LineStackingStrategy="MaxHeight"/>

Property Value

A value that indicates how a line box is determined for each line of text in the Block. The default is MaxHeight.

Remarks

Block is a base class for Paragraph. Paragraph is the only element that you can set a LineStackingStrategy value on in Windows Runtime XAML, unless you create a custom class based on Block.

BlockLineHeight and MaxHeight are the only two constant names that exist in the LineStackingStrategy enumeration, so the XAML syntax shows those two choices.

Applies to

Product Versions
Windows App SDK 0.8, 1.0, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6

See also