devexpress-reporting
Version:
DevExpress Reporting provides the capability to develop a reporting application to create and customize reports.
18 lines (17 loc) • 1.21 kB
JavaScript
/**
* DevExpress HTML/JS Reporting (common\exportOptions\textMetaData.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 { parseBool } from '@devexpress/analytics-core/analytics-utils-native';
import { editorTemplates } from '@devexpress/analytics-core/analytics-widgets-native';
import { textEncodingType, textExportMode } from './metadata';
import { editorTemplates as _editorTemplates } from '../widgets/_editorTemplates';
export const textExportOptionsSerializationInfo = [
textEncodingType,
{ propertyName: 'quoteStringsWithSeparators', modelName: '@QuoteStringsWithSeparators', displayName: 'Quote Strings with Separators', localizationId: 'DevExpress.XtraPrinting.TextExportOptionsBase.QuoteStringsWithSeparators', defaultVal: false, editor: editorTemplates.getEditor('bool'), from: parseBool },
{ propertyName: 'separator', modelName: '@Separator', displayName: 'Separator', localizationId: 'DevExpress.XtraPrinting.TextExportOptionsBase.Separator', defaultVal: 'TAB', editor: _editorTemplates.textExportSeparator },
textExportMode
];