コード例 #1
0
ファイル: Export.cs プロジェクト: emumanu/OpenUI5Sharp
 /// <summary>
 /// Adds some row to the aggregation {@link #getRows rows}.
 /// </summary>
 /// <param name="oRow">The row 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.ui.core.util.Export addRow(sap.ui.core.util.ExportRow oRow);
コード例 #2
0
ファイル: Export.cs プロジェクト: emumanu/OpenUI5Sharp
 /// <summary>
 /// Checks for the provided <code>sap.ui.core.util.ExportRow</code> in the aggregation {@link #getRows rows}. and returns its index if found or -1 otherwise.
 /// </summary>
 /// <param name="oRow">The row 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 indexOfRow(sap.ui.core.util.ExportRow oRow);
コード例 #3
0
ファイル: Export.cs プロジェクト: emumanu/OpenUI5Sharp
 /// <summary>
 /// Inserts a row into the aggregation {@link #getRows rows}.
 /// </summary>
 /// <param name="oRow">The row to insert; if empty, nothing is inserted</param>
 /// <param name="iIndex">The <code>0</code>-based index the row should be inserted at; for a negative value of <code>iIndex</code>, the row is inserted at position 0; for a value greater than the current size of the aggregation, the row is inserted at the last position</param>
 /// <returns>Reference to <code>this</code> in order to allow method chaining</returns>
 public extern virtual sap.ui.core.util.Export insertRow(sap.ui.core.util.ExportRow oRow, int iIndex);