ExVEx.Style.Font (ExVEx v0.2.0)

Copy Markdown View Source

A font record from xl/styles.xml — a name, size, colour, and the usual decoration flags.

Summary

Types

t()

@type t() :: %ExVEx.Style.Font{
  bold: boolean(),
  color: ExVEx.Style.Color.t() | nil,
  italic: boolean(),
  name: String.t() | nil,
  size: number() | nil,
  strike: boolean(),
  underline: underline()
}

underline()

@type underline() ::
  :none | :single | :double | :single_accounting | :double_accounting