/// <summary> /// Adds some range to the aggregation {@link #getRanges ranges}. /// </summary> /// <param name="oRange">The range to add; if empty, nothing is inserted</param> /// <returns>Reference to <code>this</code> in order to allow method chaining</returns> public extern virtual sap.ui.commons.ResponsiveContainer addRange(sap.ui.commons.ResponsiveContainerRange oRange);
/// <summary> /// Checks for the provided <code>sap.ui.commons.ResponsiveContainerRange</code> in the aggregation {@link #getRanges ranges}. and returns its index if found or -1 otherwise. /// </summary> /// <param name="oRange">The range whose index is looked for</param> /// <returns>The index of the provided control in the aggregation if found, or -1 otherwise</returns> public extern virtual int indexOfRange(sap.ui.commons.ResponsiveContainerRange oRange);
/// <summary> /// Inserts a range into the aggregation {@link #getRanges ranges}. /// </summary> /// <param name="oRange">The range to insert; if empty, nothing is inserted</param> /// <param name="iIndex">The <code>0</code>-based index the range should be inserted at; for a negative value of <code>iIndex</code>, the range is inserted at position 0; for a value greater than the current size of the aggregation, the range is inserted at the last position</param> /// <returns>Reference to <code>this</code> in order to allow method chaining</returns> public extern virtual sap.ui.commons.ResponsiveContainer insertRange(sap.ui.commons.ResponsiveContainerRange oRange, int iIndex);