Example #1
0
            public VStatRow AddVStatRow(string 拡張子, long ファイル数, float 数の割合, long ファイル容量, float 容量の割合)
            {
                VStatRow rowVStatRow = ((VStatRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    拡張子,
                    ファイル数,
                    数の割合,
                    ファイル容量,
                    容量の割合
                };
                rowVStatRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowVStatRow);
                return(rowVStatRow);
            }
Example #2
0
 public VStatRowChangeEvent(VStatRow row, global::System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
Example #3
0
 public void RemoveVStatRow(VStatRow row) {
     this.Rows.Remove(row);
 }
Example #4
0
 public void AddVStatRow(VStatRow row) {
     this.Rows.Add(row);
 }
Example #5
0
 public VStatRowChangeEvent(VStatRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Example #6
0
 public void RemoveVStatRow(VStatRow row)
 {
     this.Rows.Remove(row);
 }
Example #7
0
 public void AddVStatRow(VStatRow row)
 {
     this.Rows.Add(row);
 }