Пример #1
0
 /// <summary>
 /// Sets the selected sap.m.RadioButton using sap.m.RadioButton.
 /// </summary>
 /// <param name="oSelectedButton">The item to be selected.</param>
 /// <returns>Pointer to the control instance for chaining.</returns>
 public extern virtual sap.m.RadioButtonGroup setSelectedButton(sap.m.RadioButton oSelectedButton);
Пример #2
0
 /// <summary>
 /// Adds a new radio button to the group.
 /// </summary>
 /// <param name="oButton">The button which will be added to the group.</param>
 /// <returns>Pointer to the control instance for chaining.</returns>
 public extern virtual sap.m.RadioButtonGroup addButton(sap.m.RadioButton oButton);
Пример #3
0
 /// <summary>
 /// Checks for the provided <code>sap.m.RadioButton</code> in the aggregation {@link #getButtons buttons}. and returns its index if found or -1 otherwise.
 /// </summary>
 /// <param name="oButton">The button 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 indexOfButton(sap.m.RadioButton oButton);
Пример #4
0
 /// <summary>
 /// Adds a new radio button to the group at a specified index.
 /// </summary>
 /// <param name="oButton">The radio button which will be added to the group.</param>
 /// <param name="iIndex">The index, at which the radio button will be added.</param>
 /// <returns>Pointer to the control instance for chaining.</returns>
 public extern virtual sap.m.RadioButtonGroup insertButton(sap.m.RadioButton oButton, int iIndex);