Пример #1
0
        public void SetValue(IRfcTable table)
        {
            this.Clear();

            for (int i = 0; i < table.RowCount; i++)
            {
                table.CurrentIndex = i;
                BAPIPAREX dataRow = this.CreateNewRow() as BAPIPAREX;
                dataRow.SetValue(table.CurrentRow);
                this.Add(dataRow);
            }
        }
Пример #2
0
 /// <summary>
 /// Determines wheter an element is in the collection.
 /// </summary>
 /// <param name="value">The BAPIPAREX to locate in the collection.</param>
 /// <returns>True if found; else false.</returns>
 public bool Contains(BAPIPAREX value)
 {
     return(List.Contains(value));
 }
Пример #3
0
 /// <summary>
 /// Searches for the specified BAPIPAREX and returnes the zero-based index of the first occurrence in the collection.
 /// </summary>
 /// <param name="value">The BAPIPAREX to locate in the collection.</param>
 /// <returns>The index of the object found or -1.</returns>
 public int IndexOf(BAPIPAREX value)
 {
     return(List.IndexOf(value));
 }
Пример #4
0
 /// <summary>
 /// Inserts a BAPIPAREX 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 BAPIPAREX to insert.</param>
 public void Insert(int index, BAPIPAREX value)
 {
     List.Insert(index, value);
 }
Пример #5
0
 /// <summary>
 /// Adds a BAPIPAREX to the end of the collection.
 /// </summary>
 /// <param name="value">The BAPIPAREX to be added to the end of the collection.</param>
 /// <returns>The index of the newBAPIPAREX.</returns>
 public int Add(BAPIPAREX value)
 {
     return(List.Add(value));
 }
Пример #6
0
 /// <summary>
 /// Removes the first occurrence of the specified BAPIPAREX from the collection.
 /// </summary>
 /// <param name="value">The BAPIPAREX to remove from the collection.</param>
 public void Remove(BAPIPAREX value)
 {
     List.Remove(value);
 }