UNPKG

devexpress-reporting

Version:

DevExpress Reporting provides the capability to develop a reporting application to create and customize reports.

21 lines (20 loc) 901 B
/** * DevExpress HTML/JS Reporting (common\exportOptions\htmlMetaData.js) * Version: 26.1.3 * Build date: Jun 16, 2026 * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED * License: https://www.devexpress.com/Support/EULAs/universal.xml */ import { characterSet, embedImagesInHTML, exportWatermarks, expotOptionsTitle, htmlExportMode, htmlTableLayout, inlineCss, pageBorderColor, pageBorderWidth, pageRange, rasterizationResolution, removeSecondarySymbols } from './metadata'; export const htmlExportOptionsSerializationInfoBase = [ pageBorderColor, pageBorderWidth, pageRange, rasterizationResolution, expotOptionsTitle, htmlTableLayout, removeSecondarySymbols, exportWatermarks, characterSet ]; export const htmlExportOptionsSerializationInfo = [htmlExportMode, embedImagesInHTML, inlineCss].concat(htmlExportOptionsSerializationInfoBase);