Sha256: 7e7a5fb9175cbab3935516443e52523f4bfd0dad62094c9f0e9f6ddbe48031af
Contents?: true
Size: 1.24 KB
Versions: 3
Compression:
Stored size: 1.24 KB
Contents
/*! * UI development toolkit for HTML5 (OpenUI5) * (c) Copyright 2009-2018 SAP SE or an SAP affiliate company. * Licensed under the Apache License, Version 2.0 - see LICENSE.txt. */ // Provides control sap.m.HBox. sap.ui.define(['./FlexBox', './library', './HBoxRenderer'], function(FlexBox, library, HBoxRenderer) { "use strict"; /** * Constructor for a new HBox. * * @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 * The HBox control builds the container for a horizontal flexible box layout. HBox is a convenience control, as it is just a specialized FlexBox control.<br> * <br> * <b>Note:</b> Be sure to check the <code>renderType</code> setting to avoid issues due to browser inconsistencies. * * @extends sap.m.FlexBox * * @author SAP SE * @version 1.60.23 * * @constructor * @public * @alias sap.m.HBox * @ui5-metamodel This control/element also will be described in the UI5 (legacy) designtime metamodel */ var HBox = FlexBox.extend("sap.m.HBox", /** @lends sap.m.HBox.prototype */ { metadata : { library : "sap.m", designtime: "sap/m/designtime/HBox.designtime" }}); return HBox; });
Version data entries
3 entries across 3 versions & 1 rubygems