示例#1
0
            public TableSettingsRow AddTableSettingsRow(string Name, string Value, string Type, string Selitems, string MinValue, string MaxValue)
            {
                TableSettingsRow rowTableSettingsRow = ((TableSettingsRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    Name,
                    Value,
                    Type,
                    Selitems,
                    MinValue,
                    MaxValue
                };
                rowTableSettingsRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowTableSettingsRow);
                return(rowTableSettingsRow);
            }
示例#2
0
 public TableSettingsRowChangeEvent(TableSettingsRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
示例#3
0
 public void RemoveTableSettingsRow(TableSettingsRow row)
 {
     this.Rows.Remove(row);
 }
示例#4
0
 public void AddTableSettingsRow(TableSettingsRow row)
 {
     this.Rows.Add(row);
 }