示例#1
0
            public LinksRow AddLinksRow(int i, int j, float len, float lanes, int vdf, float volau)
            {
                LinksRow rowLinksRow = ((LinksRow)(this.NewRow()));

                rowLinksRow.ItemArray = new object[] {
                    i,
                    j,
                    len,
                    lanes,
                    vdf,
                    volau
                };
                this.Rows.Add(rowLinksRow);
                return(rowLinksRow);
            }
示例#2
0
 public void RemoveLinksRow(LinksRow row)
 {
     this.Rows.Remove(row);
 }
示例#3
0
 public void AddLinksRow(LinksRow row)
 {
     this.Rows.Add(row);
 }
示例#4
0
 public LinksRowChangeEvent(LinksRow row, System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }