/// <summary> /// Adds some collection <code>oCollection</code> to the aggregation named <code>collections</code>. /// </summary> /// <param name="oCollection">the collection to add; if empty, nothing is inserted</param> /// <returns><code>this</code> to allow method chaining</returns> public extern virtual sap.ui.ux3.CollectionInspector addCollection(sap.ui.ux3.Collection oCollection);
/// <summary> /// Checks for the provided <code>sap.ui.ux3.Collection</code> in the aggregation {@link #getCollections collections}. and returns its index if found or -1 otherwise. /// </summary> /// <param name="oCollection">The collection 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 indexOfCollection(sap.ui.ux3.Collection oCollection);
/// <summary> /// Inserts a collection into the aggregation named <code>collections</code>. /// </summary> /// <param name="oCollection">the collection to insert; if empty, nothing is inserted</param> /// <param name="iIndex">the <code>0</code>-based index the collection should be inserted at; for a negative value of <code>iIndex</code>, the collection is inserted at position 0; for a value greater than the current size of the aggregation, the collection is inserted at the last position</param> /// <returns><code>this</code> to allow method chaining</returns> public extern virtual sap.ui.ux3.CollectionInspector insertCollection(sap.ui.ux3.Collection oCollection, int iIndex);