UNPKG

devextreme

Version:

HTML5 JavaScript Component Suite for Responsive Web Development

42 lines (40 loc) 1.29 kB
/** * DevExtreme (exporter/excel/excel.doc_comments.d.ts) * Version: 22.1.9 * Build date: Tue Apr 18 2023 * * Copyright (c) 2012 - 2023 Developer Express Inc. ALL RIGHTS RESERVED * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/ */ export type ExcelUnderlineType = 'double' | 'doubleAccounting' | 'none' | 'single' | 'singleAccounting'; /** * An object that configures the font in an Excel cell. * @deprecated * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ export interface ExcelFont { /** * Specifies whether the text should be in bold. */ bold?: boolean; /** * The text's color in hexadecimal characters. */ color?: string; /** * Specifies whether the text should be in italic. */ italic?: boolean; /** * The name of the typeface that should be applied to the text. */ name?: string; /** * The font size specified in points (1/72 of an inch). */ size?: number; /** * The underline formatting style. */ underline?: ExcelUnderlineType; }