-api-id | -api-type |
---|---|
P:Windows.UI.Xaml.Documents.Block.LineStackingStrategy |
winrt property |
Gets or sets a value that indicates how a line box is determined for each line of text in the Block.
<Paragraph LineStackingStrategy="BlockLineHeight"/>
-or-
<Paragraph LineStackingStrategy="MaxHeight"/>
A value that indicates how a line box is determined for each line of text in the Block. The default is MaxHeight.
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.