public ConfigOptionRow AddConfigOptionRow(string RenderSystem, string Name, string Value)
            {
                ConfigOptionRow rowConfigOptionRow = ((ConfigOptionRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    RenderSystem,
                    Name,
                    Value
                };
                rowConfigOptionRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowConfigOptionRow);
                return(rowConfigOptionRow);
            }
示例#2
0
			public ConfigOptionRowChangeEvent(ConfigOptionRow row, global::System.Data.DataRowAction action) {
				this.eventRow = row;
				this.eventAction = action;
			}
示例#3
0
			public void RemoveConfigOptionRow(ConfigOptionRow row) {
				this.Rows.Remove(row);
			}
示例#4
0
			public void AddConfigOptionRow(ConfigOptionRow row) {
				this.Rows.Add(row);
			}
 public ConfigOptionRowChangeEvent(ConfigOptionRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
 public void RemoveConfigOptionRow(ConfigOptionRow row)
 {
     this.Rows.Remove(row);
 }
 public void AddConfigOptionRow(ConfigOptionRow row)
 {
     this.Rows.Add(row);
 }