Example #1
0
 /// <summary>
 /// Adds some group to the aggregation {@link #getGroups groups}.
 /// </summary>
 /// <param name="oGroup">The group 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.m.QuickViewPage addGroup(sap.m.QuickViewGroup oGroup);
Example #2
0
 /// <summary>
 /// Checks for the provided <code>sap.m.QuickViewGroup</code> in the aggregation {@link #getGroups groups}. and returns its index if found or -1 otherwise.
 /// </summary>
 /// <param name="oGroup">The group 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 indexOfGroup(sap.m.QuickViewGroup oGroup);
Example #3
0
 /// <summary>
 /// Inserts a group into the aggregation {@link #getGroups groups}.
 /// </summary>
 /// <param name="oGroup">The group to insert; if empty, nothing is inserted</param>
 /// <param name="iIndex">The <code>0</code>-based index the group should be inserted at; for a negative value of <code>iIndex</code>, the group is inserted at position 0; for a value greater than the current size of the aggregation, the group is inserted at the last position</param>
 /// <returns>Reference to <code>this</code> in order to allow method chaining</returns>
 public extern virtual sap.m.QuickViewPage insertGroup(sap.m.QuickViewGroup oGroup, int iIndex);