Пример #1
0
 /// <summary>
 /// Checks for the provided <code>sap.m.Token</code> in the aggregation {@link #getTokens tokens}. and returns its index if found or -1 otherwise.
 /// </summary>
 /// <param name="oToken">The token 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 indexOfToken(sap.m.Token oToken);
Пример #2
0
 /// <summary>
 /// Adds some token to the aggregation {@link #getTokens tokens}.
 /// </summary>
 /// <param name="oToken">The token 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.MultiInput addToken(sap.m.Token oToken);
Пример #3
0
 /// <summary>
 /// Adds some token to the aggregation {@link #getTokens tokens}.
 /// </summary>
 /// <param name="oToken">The token 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.Tokenizer addToken(sap.m.Token oToken);
Пример #4
0
 /// <summary>
 /// Inserts a token into the aggregation {@link #getTokens tokens}.
 /// </summary>
 /// <param name="oToken">The token to insert; if empty, nothing is inserted</param>
 /// <param name="iIndex">The <code>0</code>-based index the token should be inserted at; for a negative value of <code>iIndex</code>, the token is inserted at position 0; for a value greater than the current size of the aggregation, the token 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.MultiInput insertToken(sap.m.Token oToken, int iIndex);
Пример #5
0
 /// <summary>
 /// Inserts a token into the aggregation {@link #getTokens tokens}.
 /// </summary>
 /// <param name="oToken">The token to insert; if empty, nothing is inserted</param>
 /// <param name="iIndex">The <code>0</code>-based index the token should be inserted at; for a negative value of <code>iIndex</code>, the token is inserted at position 0; for a value greater than the current size of the aggregation, the token 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.Tokenizer insertToken(sap.m.Token oToken, int iIndex);