public void AddRange(XmlPropertySettingGroupCollection value) { for (int index = 0; index < value.Count; ++index) { this.Add(value[index]); } }
/// <summary> /// <para> /// Adds the contents of another <see cref='Telerik.WinControls.XmlPropertySettingGroupCollection'/> to the end of the collection. /// </para> /// </summary> /// <param name='value'> /// A <see cref='Telerik.WinControls.XmlPropertySettingGroupCollection'/> containing the objects to add to the collection. /// </param> /// <returns> /// <para>None.</para> /// </returns> public void AddRange(XmlPropertySettingGroupCollection value) { for (int i = 0; (i < value.Count); i = (i + 1)) { this.Add(value[i]); } }
public XmlStyleSheet(StyleSheet style) { //Create xmlstyel from stylesheet this.propertySettingGroups = new XmlPropertySettingGroupCollection(style.PropertySettingGroups.Count); for (int i = 0; i < style.PropertySettingGroups.Count; i++) { this.propertySettingGroups.Add(style.PropertySettingGroups[i].Serialize()); } }
public XmlStyleSheet(StyleSheet style) { this.propertySettingGroups = new XmlPropertySettingGroupCollection(style.PropertySettingGroups.Count); int num = 0; while (num < style.PropertySettingGroups.Count) { ++num; } }
public XmlPropertySettingGroupCollection(XmlPropertySettingGroupCollection value) { this.AddRange(value); }
public XmlPropertySettingGroupEnumerator(XmlPropertySettingGroupCollection mappings) { this.temp = (IEnumerable)mappings; this.baseEnumerator = this.temp.GetEnumerator(); }