Ejemplo n.º 1
0
            public chunkRow AddchunkRow(System.DateTime start_tc, int channel, System.DateTime end_tc, long duration, int offset, bool isblank, string url)
            {
                chunkRow rowchunkRow = ((chunkRow)(this.NewRow()));

                rowchunkRow.ItemArray = new object[] {
                    start_tc,
                    channel,
                    end_tc,
                    duration,
                    offset,
                    isblank,
                    url
                };
                this.Rows.Add(rowchunkRow);
                return(rowchunkRow);
            }
Ejemplo n.º 2
0
 public chunkRowChangeEvent(chunkRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Ejemplo n.º 3
0
 public void RemovechunkRow(chunkRow row)
 {
     this.Rows.Remove(row);
 }
Ejemplo n.º 4
0
 public void AddchunkRow(chunkRow row)
 {
     this.Rows.Add(row);
 }