예제 #1
0
 /// <summary>
 /// Checks for the provided <code>sap.m.SegmentedButtonItem</code> in the aggregation {@link #getItems items}. and returns its index if found or -1 otherwise.
 /// </summary>
 /// <param name="oItem">The item 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 indexOfItem(sap.m.SegmentedButtonItem oItem);
예제 #2
0
 /// <summary>
 /// Adds item to <code>items</code> aggregation.
 /// </summary>
 /// <param name="oItem">The item to be added</param>
 /// <returns><code>this</code> pointer for chaining</returns>
 public extern virtual sap.m.SegmentedButton addItem(sap.m.SegmentedButtonItem oItem);
예제 #3
0
 /// <summary>
 /// Removes an item from <code>items</code> aggregation.
 /// </summary>
 /// <param name="oItem">The item to be removed</param>
 public extern virtual void removeItem(sap.m.SegmentedButtonItem oItem);
예제 #4
0
 /// <summary>
 /// Inserts item into <code>items</code> aggregation.
 /// </summary>
 /// <param name="oItem">The item to be inserted</param>
 /// <param name="iIndex">index the item should be inserted at</param>
 /// <returns><code>this</code> pointer for chaining</returns>
 public extern virtual sap.m.SegmentedButton insertItem(sap.m.SegmentedButtonItem oItem, int iIndex);