/// <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);
/// <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);
/// <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);
/// <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);