예제 #1
0
            public ScriptsListRow AddScriptsListRow(string ScriptPath, string ScriptName, string ScriptExt, bool WillExecute, int SortOrder, BatchRow parentBatchRowByBatch_ScriptsList)
            {
                ScriptsListRow rowScriptsListRow = ((ScriptsListRow)(this.NewRow()));

                rowScriptsListRow.ItemArray = new object[] {
                    ScriptPath,
                    ScriptName,
                    ScriptExt,
                    WillExecute,
                    null,
                    SortOrder,
                    parentBatchRowByBatch_ScriptsList[0]
                };
                this.Rows.Add(rowScriptsListRow);
                return(rowScriptsListRow);
            }
예제 #2
0
 public void RemoveScriptsListRow(ScriptsListRow row)
 {
     this.Rows.Remove(row);
 }
예제 #3
0
 public void AddScriptsListRow(ScriptsListRow row)
 {
     this.Rows.Add(row);
 }
예제 #4
0
 public ScriptsListRowChangeEvent(ScriptsListRow row, System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }