TextWeights
FormatProperties
.
TextWeight
Typeface weight options (e.g. normal=400, bold=700).
None
Thin
ExtraLight
Light
Normal
Medium
SemiBold
Bold
ExtraBold
Black
Example 1
Example
=
Paragraph
{
TextHeight
:
20pt;
Span
{
"Thin "
;
TextWeight
:
TextWeights
.
Thin
;
};
"Normal "
;
Span
{
"Bold "
;
TextWeight
:
TextWeights
.
Bold
;
};
};
Thin
Normal
Bold
Example 2
Example2
=
Paragraph
{
TextHeight
:
20pt;
"This is "
;
// A "Bold" inside a span affects all text in the span
Span
{
Bold
;
"Bold"
;
" text"
;
};
};
This is
Bold text
Example 3
Example3
=
Paragraph
{
TextHeight
:
20pt;
"Here is "
;
Bold
"Bold"
;
" text"
;
};
//============================================================
Here is
Bold
text