public void SetValue(IRfcTable table) { this.Clear(); for (int i = 0; i < table.RowCount; i++) { table.CurrentIndex = i; BAPIACRE09 dataRow = this.CreateNewRow() as BAPIACRE09; dataRow.SetValue(table.CurrentRow); this.Add(dataRow); } }
/// <summary> /// Determines wheter an element is in the collection. /// </summary> /// <param name="value">The BAPIACRE09 to locate in the collection.</param> /// <returns>True if found; else false.</returns> public bool Contains(BAPIACRE09 value) { return(List.Contains(value)); }
/// <summary> /// Searches for the specified BAPIACRE09 and returnes the zero-based index of the first occurrence in the collection. /// </summary> /// <param name="value">The BAPIACRE09 to locate in the collection.</param> /// <returns>The index of the object found or -1.</returns> public int IndexOf(BAPIACRE09 value) { return(List.IndexOf(value)); }
/// <summary> /// Inserts a BAPIACRE09 into the collection at the specified index. /// </summary> /// <param name="index">The zero-based index at which value should be inserted.</param> /// <param name="value">The BAPIACRE09 to insert.</param> public void Insert(int index, BAPIACRE09 value) { List.Insert(index, value); }
/// <summary> /// Adds a BAPIACRE09 to the end of the collection. /// </summary> /// <param name="value">The BAPIACRE09 to be added to the end of the collection.</param> /// <returns>The index of the newBAPIACRE09.</returns> public int Add(BAPIACRE09 value) { return(List.Add(value)); }
/// <summary> /// Removes the first occurrence of the specified BAPIACRE09 from the collection. /// </summary> /// <param name="value">The BAPIACRE09 to remove from the collection.</param> public void Remove(BAPIACRE09 value) { List.Remove(value); }