XlsxWriter.WorkbookProperties (xlsx_writer v0.8.3)

Copy Markdown

Document properties for an Excel workbook.

These properties are visible in the File > Info section of Excel and in the file's metadata.

Fields

  • :author - The document author
  • :title - The document title
  • :subject - The document subject
  • :manager - The manager field
  • :company - The company name
  • :category - The document category
  • :keywords - Keywords for the document
  • :comment - A comment/description for the document
  • :status - The document status

Summary

Types

t()

@type t() :: %XlsxWriter.WorkbookProperties{
  author: String.t() | nil,
  category: String.t() | nil,
  comment: String.t() | nil,
  company: String.t() | nil,
  keywords: String.t() | nil,
  manager: String.t() | nil,
  status: String.t() | nil,
  subject: String.t() | nil,
  title: String.t() | nil
}