PdfStringFormat
LineLimit Property
|
Only entire lines are laid out in the formatting rectangle.
By default layout continues until the end of the text,
or until no more lines are visible as a result of clipping, whichever comes first.
Note that the default settings allow the last line to be partially obscured by a formatting rectangle that is not a whole multiple of the line height.
To ensure that only whole lines are seen, specify this value and be careful to provide a formatting rectangle at least as tall as the height of one line.
Namespace:
Spire.Pdf.Graphics
Assembly:
Spire.Pdf (in Spire.Pdf.dll) Version: 11.3.7.0 (11.3.7.1046)
Syntax
public bool LineLimit { get; set; }
Public Property LineLimit As Boolean
Get
Set
public:
property bool LineLimit {
bool get ();
void set (bool value);
}
member LineLimit : bool with get, set
Property Value
Type:
Boolean
true
if [line limit]; otherwise,
false
.
See Also