Beispiel #1
0
            public StateListTableRow AddStateListTableRow(string STATE, string NAME)
            {
                StateListTableRow rowStateListTableRow = ((StateListTableRow)(this.NewRow()));

                rowStateListTableRow.ItemArray = new object[] {
                    STATE,
                    NAME
                };
                this.Rows.Add(rowStateListTableRow);
                return(rowStateListTableRow);
            }
Beispiel #2
0
 public StateListTableRowChangeEvent(StateListTableRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Beispiel #3
0
 public void RemoveStateListTableRow(StateListTableRow row)
 {
     this.Rows.Remove(row);
 }
Beispiel #4
0
 public void AddStateListTableRow(StateListTableRow row)
 {
     this.Rows.Add(row);
 }