Ejemplo n.º 1
0
 /// <summary>
 /// Adds some page to the aggregation {@link #getPages pages}.
 /// </summary>
 /// <param name="oPage">The page 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.QuickViewBase addPage(sap.m.QuickViewPage oPage);
Ejemplo n.º 2
0
 /// <summary>
 /// Checks for the provided <code>sap.m.QuickViewPage</code> in the aggregation {@link #getPages pages}. and returns its index if found or -1 otherwise.
 /// </summary>
 /// <param name="oPage">The page 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 indexOfPage(sap.m.QuickViewPage oPage);
Ejemplo n.º 3
0
 /// <summary>
 /// Inserts a page into the aggregation {@link #getPages pages}.
 /// </summary>
 /// <param name="oPage">The page to insert; if empty, nothing is inserted</param>
 /// <param name="iIndex">The <code>0</code>-based index the page should be inserted at; for a negative value of <code>iIndex</code>, the page is inserted at position 0; for a value greater than the current size of the aggregation, the page 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.QuickViewBase insertPage(sap.m.QuickViewPage oPage, int iIndex);