public void AddRange(ContextualTabGroupCollection value)
 {
     for (int index = 0; index < value.Count; ++index)
     {
         this.Add(value[index]);
     }
 }
Exemple #2
0
 /// <summary>
 ///     <para>
 ///       Adds the contents of another <see cref='Telerik.WinControls.UI.ContextualTabGroupCollection'/> to the end of the collection.
 ///    </para>
 /// </summary>
 /// <param name='value'>
 ///    A <see cref='Telerik.WinControls.UI.ContextualTabGroupCollection'/> containing the objects to add to the collection.
 /// </param>
 /// <returns>
 ///   <para>None.</para>
 /// </returns>
 /// <seealso cref='Telerik.WinControls.UI.ContextualTabGroupCollection.Add'/>
 public void AddRange(ContextualTabGroupCollection value)
 {
     for (int i = 0; i < value.Count; i = i + 1)
     {
         this.Add(value[i]);
     }
 }
 public ContextualTabGroupCollection(ContextualTabGroupCollection value)
 {
     this.AddRange(value);
 }
 public ContextualTabGroupEnumerator(ContextualTabGroupCollection mappings)
 {
     this.temp           = (IEnumerable)mappings;
     this.baseEnumerator = this.temp.GetEnumerator();
 }