Enum SvgFontWeight
- Namespace
- Svg
- Assembly
- Svg.dll
The weight of a face relative to others in the same font family.
[TypeConverter(typeof(SvgFontWeightConverter))]
[Flags]
public enum SvgFontWeight
Fields
All = Normal | Bold | W100 | W200 | W300 | W400 | W500 | W600 | W700 | W800 | W900All font weights.
Bold = 2Same as W700.
Bolder = 4One font weight darker than the parent element.(do not use font-face.)
Inherit = 0The value is inherited from the parent element.
Lighter = 8One font weight lighter than the parent element.(do not use font-face.)
Normal = 1Same as W400.
W100 = 256W200 = 512W300 = 1024W400 = 2048Same as Normal.
W500 = 4096W600 = 8192W700 = 16384Same as Bold.
W800 = 32768W900 = 65536