UNPKG

@openui5/sap.ui.core

Version:

OpenUI5 Core Library sap.ui.core

45 lines (40 loc) 1.06 kB
/*! * OpenUI5 * (c) Copyright 2009-2021 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.87.1 * @since 1.22.0 * * @public * @deprecated Since version 1.73 * @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; });