Exemplo n.º 1
0
            public ListHelpDocumentFormRow AddListHelpDocumentFormRow(string FormFile, string FileName, string Description, bool IsFile)
            {
                ListHelpDocumentFormRow rowListHelpDocumentFormRow = ((ListHelpDocumentFormRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    null,
                    FormFile,
                    FileName,
                    Description,
                    IsFile
                };
                rowListHelpDocumentFormRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowListHelpDocumentFormRow);
                return(rowListHelpDocumentFormRow);
            }
Exemplo n.º 2
0
 public ListHelpDocumentFormRowChangeEvent(ListHelpDocumentFormRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Exemplo n.º 3
0
 public void RemoveListHelpDocumentFormRow(ListHelpDocumentFormRow row)
 {
     this.Rows.Remove(row);
 }
Exemplo n.º 4
0
 public void AddListHelpDocumentFormRow(ListHelpDocumentFormRow row)
 {
     this.Rows.Add(row);
 }