UNPKG

@openui5/sap.ui.core

Version:

OpenUI5 Core Library sap.ui.core

45 lines (40 loc) 1.14 kB
/*! * OpenUI5 * (c) Copyright 2026 SAP SE or an SAP affiliate company. * Licensed under the Apache License, Version 2.0 - see LICENSE.txt. */ // Provides class sap.ui.core.util.ExportCell sap.ui.define(['sap/ui/core/Element'], function(Element) { 'use strict'; /** * Constructor for a new ExportCell. * * @param {string} [sId] id for the new control, generated automatically if no id is given * @param {object} [mSettings] initial settings for the new control * * @class * Contains content that can be used to export data. Used in {@link sap.ui.core.util.ExportColumn ExportColumn} / {@link sap.ui.core.util.Export Export}. * @extends sap.ui.core.Element * * @author SAP SE * @version 1.147.0 * @since 1.22.0 * * @public * @deprecated As of version 1.73, replaced by the export functionality of the <code>sap.ui.export</code> library. * @alias sap.ui.core.util.ExportCell */ var ExportCell = Element.extend('sap.ui.core.util.ExportCell', { metadata: { library: "sap.ui.core", properties: { /** * Cell content. */ content: 'string' } } }); return ExportCell; });