Glypht
  • Documentation
  • Discussions
  • GitHub
Navigation
  • Documentation
    • @glypht/bundler-utils
      • NodeType
      • CSSSpan
      • CSSOutput
      • FeatureMetadata
      • FamilyInfo
      • SubsetAxisSetting
      • ExportedFont
      • CharacterSetSettings
      • FamilySubsetSettings
      • FamilySettings
      • ExportFontsSettings
      • featureMetadata
      • sortFontsIntoFamilies
      • exportedFontsToCSS
      • exportFonts
      • parseUnicodeRanges
      • parseRanges
      • formatUnicodeRanges
    • @glypht/cli
      • GlyphtConfig
      • build
    • @glypht/core
      • AxisValueFormat
      • AxisValueFlags
      • WoffCompressionContext
      • GlyphtContext
      • CompressOptions
      • DecompressOptions
      • LoadFontsOptions
      • AxisInfo
      • SubsetAxisInfo
      • StyleValue
      • FeatureInfo
      • NamedInstance
      • StyleKey
      • StyleValues
      • SfntVersion
      • DesignAxisRecord
      • AxisValueSingle
      • AxisValueRange
      • AxisValueLinked
      • AxisValueMultiple
      • AxisValue
      • StyleAttributes
      • SubsettedFont
      • SubsetInfo
      • SubsetAxisSetting
      • SubsetSettings
      • FontRef
      • SubsetName
      • SUBSET_NAMES
    • Comparison with other tools
    • Web app

AxisValueLinked

A record that associates an axis value to another linked axis value. This is primarily intended to link a regular weight to a "Bold" weight, e,g. to know which weight to select if a user clicks the "Bold" button.

type AxisValueLinked = {
    format: LinkedValue;
    flags: AxisValueFlags;
    name: string | null;
    axisIndex: number;
    value: number;
    linkedValue: number;
}
  • Defined in font-types.ts:192
Index

Properties

format flags name axisIndex value linkedValue

Properties

format

format: LinkedValue
  • Defined in font-types.ts:193

flags

flags: AxisValueFlags
  • Defined in font-types.ts:194

name

name: string | null
  • Defined in font-types.ts:195

axisIndex

axisIndex: number
  • Defined in font-types.ts:196

value

value: number
  • Defined in font-types.ts:197

linkedValue

linkedValue: number
  • Defined in font-types.ts:198