コード例 #1
0
            public TS_PrintRow AddTS_PrintRow(string 模块名称, bool 打印)
            {
                TS_PrintRow rowTS_PrintRow = ((TS_PrintRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    模块名称,
                    打印
                };
                rowTS_PrintRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowTS_PrintRow);
                return(rowTS_PrintRow);
            }
コード例 #2
0
 public TS_PrintRowChangeEvent(TS_PrintRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
コード例 #3
0
 public void RemoveTS_PrintRow(TS_PrintRow row)
 {
     this.Rows.Remove(row);
 }
コード例 #4
0
 public void AddTS_PrintRow(TS_PrintRow row)
 {
     this.Rows.Add(row);
 }