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