Exemple #1
0
 public SettingFieldItemCollection Copy()
 {
     SettingFieldItemCollection newCollection;
     newCollection = new SettingFieldItemCollection();
     foreach (SettingFieldItem sfieldItem in this.list)
     {
         newCollection.Add(sfieldItem.Copy());
     }
     return newCollection;
 }
Exemple #2
0
 public ReportSetting()
 {
     this.settingFieldItems = new SettingFieldItemCollection();
 }