Example #1
0
 /// <summary>
 /// Adds some tileContent to the aggregation {@link #getTileContent tileContent}.
 /// </summary>
 /// <param name="oTileContent">The tileContent 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.GenericTile addTileContent(sap.m.TileContent oTileContent);
Example #2
0
 /// <summary>
 /// Checks for the provided <code>sap.m.TileContent</code> in the aggregation {@link #getTileContent tileContent}. and returns its index if found or -1 otherwise.
 /// </summary>
 /// <param name="oTileContent">The tileContent 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 indexOfTileContent(sap.m.TileContent oTileContent);
Example #3
0
 /// <summary>
 /// Inserts a tileContent into the aggregation {@link #getTileContent tileContent}.
 /// </summary>
 /// <param name="oTileContent">The tileContent to insert; if empty, nothing is inserted</param>
 /// <param name="iIndex">The <code>0</code>-based index the tileContent should be inserted at; for a negative value of <code>iIndex</code>, the tileContent is inserted at position 0; for a value greater than the current size of the aggregation, the tileContent 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.GenericTile insertTileContent(sap.m.TileContent oTileContent, int iIndex);