/// <summary> /// Moves a given Tile to the given index. /// </summary> /// <param name="vTile">The tile to move</param> /// <param name="iNewIndex">The new Tile position in the tiles aggregation</param> /// <returns>this pointer for chaining</returns> public extern virtual sap.m.TileContainer moveTile(sap.m.Tile vTile, int iNewIndex);
/// <summary> /// Deletes a Tile. /// </summary> /// <param name="oTile">The tile to move</param> /// <returns>this pointer for chaining</returns> public extern virtual sap.m.TileContainer deleteTile(sap.m.Tile oTile);
/// <summary> /// Adds a Tile to the end of the tiles collection. /// </summary> /// <param name="oTile">The tile to add</param> /// <returns>this pointer for chaining</returns> public extern virtual sap.m.TileContainer addTile(sap.m.Tile oTile);
/// <summary> /// Checks for the provided <code>sap.m.Tile</code> in the aggregation {@link #getTiles tiles}. and returns its index if found or -1 otherwise. /// </summary> /// <param name="oTile">The tile 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 indexOfTile(sap.m.Tile oTile);
/// <summary> /// Inserts a Tile to the given index. /// </summary> /// <param name="oTile">The Tile to insert</param> /// <param name="iIndex">The new Tile position in the tiles aggregation</param> /// <returns>this pointer for chaining</returns> public extern virtual sap.m.TileContainer insertTile(sap.m.Tile oTile, int iIndex);