コード例 #1
0
ファイル: LightBox.cs プロジェクト: fw2568/OpenUI5Sharp
 /// <summary>
 /// Adds some imageContent to the aggregation {@link #getImageContent imageContent}.
 /// </summary>
 /// <param name="oImageContent">The imageContent 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.LightBox addImageContent(sap.m.LightBoxItem oImageContent);
コード例 #2
0
ファイル: LightBox.cs プロジェクト: fw2568/OpenUI5Sharp
 /// <summary>
 /// Checks for the provided <code>sap.m.LightBoxItem</code> in the aggregation {@link #getImageContent imageContent}. and returns its index if found or -1 otherwise.
 /// </summary>
 /// <param name="oImageContent">The imageContent 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 indexOfImageContent(sap.m.LightBoxItem oImageContent);
コード例 #3
0
ファイル: LightBox.cs プロジェクト: fw2568/OpenUI5Sharp
 /// <summary>
 /// Inserts a imageContent into the aggregation {@link #getImageContent imageContent}.
 /// </summary>
 /// <param name="oImageContent">The imageContent to insert; if empty, nothing is inserted</param>
 /// <param name="iIndex">The <code>0</code>-based index the imageContent should be inserted at; for a negative value of <code>iIndex</code>, the imageContent is inserted at position 0; for a value greater than the current size of the aggregation, the imageContent 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.LightBox insertImageContent(sap.m.LightBoxItem oImageContent, int iIndex);