示例#1
0
        public void SetValue(IRfcTable table)
        {
            this.Clear();

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