Esempio n. 1
0
 /// <summary>
 /// Detaches event handler <code>fnFunction</code> from the {@link #event:select select} event of this <code>sap.m.CheckBox</code>.
 ///
 /// The passed function and listener object must match the ones used for event registration.
 /// </summary>
 /// <param name="fnFunction">The function to be called, when the event occurs</param>
 /// <param name="oListener">Context object on which the given function had to be called</param>
 /// <returns>Reference to <code>this</code> in order to allow method chaining</returns>
 public extern virtual sap.m.CheckBox detachSelect(sap.m.SelectDelegate fnFunction, object oListener);
Esempio n. 2
0
 /// <summary>
 /// Detaches event handler <code>fnFunction</code> from the {@link #event:select select} event of this <code>sap.m.RadioButton</code>.
 ///
 /// The passed function and listener object must match the ones used for event registration.
 /// </summary>
 /// <param name="fnFunction">The function to be called, when the event occurs</param>
 /// <param name="oListener">Context object on which the given function had to be called</param>
 /// <returns>Reference to <code>this</code> in order to allow method chaining</returns>
 public extern virtual sap.m.RadioButton detachSelect(sap.m.SelectDelegate fnFunction, object oListener);
Esempio n. 3
0
 /// <summary>
 /// Attaches event handler <code>fnFunction</code> to the {@link #event:select select} event of this <code>sap.m.CheckBox</code>.
 ///
 /// When called, the context of the event handler (its <code>this</code>) will be bound to <code>oListener</code> if specified, otherwise it will be bound to this <code>sap.m.CheckBox</code> itself.
 ///
 /// Event is triggered when the control status is changed by the user by selecting or deselecting the checkbox.
 /// </summary>
 /// <param name="fnFunction">The function to be called when the event occurs</param>
 /// <returns>Reference to <code>this</code> in order to allow method chaining</returns>
 public extern virtual sap.m.CheckBox attachSelect(sap.m.SelectDelegate fnFunction);
Esempio n. 4
0
 /// <summary>
 /// Attaches event handler <code>fnFunction</code> to the {@link #event:select select} event of this <code>sap.m.RadioButton</code>.
 ///
 /// When called, the context of the event handler (its <code>this</code>) will be bound to <code>oListener</code> if specified, otherwise it will be bound to this <code>sap.m.RadioButton</code> itself.
 ///
 /// Event is triggered when the user makes a change on the radio button (selecting or unselecting it).
 /// </summary>
 /// <param name="fnFunction">The function to be called when the event occurs</param>
 /// <returns>Reference to <code>this</code> in order to allow method chaining</returns>
 public extern virtual sap.m.RadioButton attachSelect(sap.m.SelectDelegate fnFunction);