Пример #1
0
 /// <summary>
 /// Adds some formElement to the aggregation {@link #getFormElements formElements}.
 /// </summary>
 /// <param name="oFormElement">The formElement 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.form.FormContainer addFormElement(sap.ui.layout.form.FormElement oFormElement);
Пример #2
0
 /// <summary>
 /// Checks for the provided <code>sap.ui.layout.form.FormElement</code> in the aggregation {@link #getFormElements formElements}. and returns its index if found or -1 otherwise.
 /// </summary>
 /// <param name="oFormElement">The formElement 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 indexOfFormElement(sap.ui.layout.form.FormElement oFormElement);
Пример #3
0
 /// <summary>
 /// Inserts a formElement into the aggregation {@link #getFormElements formElements}.
 /// </summary>
 /// <param name="oFormElement">The formElement to insert; if empty, nothing is inserted</param>
 /// <param name="iIndex">The <code>0</code>-based index the formElement should be inserted at; for a negative value of <code>iIndex</code>, the formElement is inserted at position 0; for a value greater than the current size of the aggregation, the formElement 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.form.FormContainer insertFormElement(sap.ui.layout.form.FormElement oFormElement, int iIndex);