Example #1
0
            public NodesRow AddNodesRow(int i, float xi, float yi, bool ci)
            {
                NodesRow rowNodesRow = ((NodesRow)(this.NewRow()));

                rowNodesRow.ItemArray = new object[] {
                    i,
                    xi,
                    yi,
                    ci
                };
                this.Rows.Add(rowNodesRow);
                return(rowNodesRow);
            }
Example #2
0
 public void RemoveNodesRow(NodesRow row)
 {
     this.Rows.Remove(row);
 }
Example #3
0
 public void AddNodesRow(NodesRow row)
 {
     this.Rows.Add(row);
 }
Example #4
0
 public NodesRowChangeEvent(NodesRow row, System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }