/// <summary> /// Adds some content to the aggregation {@link #getContent content}. /// </summary> /// <param name="oContent">The content 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.layout.BlockLayoutRow addContent(sap.ui.layout.BlockLayoutCell oContent);
/// <summary> /// Checks for the provided <code>sap.ui.layout.BlockLayoutCell</code> in the aggregation {@link #getContent content}. and returns its index if found or -1 otherwise. /// </summary> /// <param name="oContent">The content 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 indexOfContent(sap.ui.layout.BlockLayoutCell oContent);
/// <summary> /// Inserts a content into the aggregation {@link #getContent content}. /// </summary> /// <param name="oContent">The content to insert; if empty, nothing is inserted</param> /// <param name="iIndex">The <code>0</code>-based index the content should be inserted at; for a negative value of <code>iIndex</code>, the content is inserted at position 0; for a value greater than the current size of the aggregation, the content 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.layout.BlockLayoutRow insertContent(sap.ui.layout.BlockLayoutCell oContent, int iIndex);