double
FormatProperties
.
TextStretch
Horizontal font stretch factor (e.g. 2.0 -> twice as wide).
Number can be a Measure or a percentage of the font height
Example
=
Block
{
Paragraph
{
"TextStretch: 0"
;
};
Paragraph
{
TextStretch
:
75%;
"TextStretch: 75%"
;
};
Paragraph
{
TextStretch
:
150%;
"TextStretch: 150%"
;
}
};
//============================================================
TextStretch: 0
TextStretch: 75%
TextStretch: 150%