Beispiel #1
0
            public DocsSharedRow AddDocsSharedRow(string RemoteURL, string LocalPath, int TotalPages, string DocType, string FileName, int Session, string LastAccessDate)
            {
                DocsSharedRow rowDocsSharedRow = ((DocsSharedRow)(this.NewRow()));

                rowDocsSharedRow.ItemArray = new object[] {
                    null,
                    RemoteURL,
                    LocalPath,
                    TotalPages,
                    DocType,
                    FileName,
                    Session,
                    LastAccessDate
                };
                this.Rows.Add(rowDocsSharedRow);
                return(rowDocsSharedRow);
            }
Beispiel #2
0
 public DocsSharedRowChangeEvent(DocsSharedRow row, DataRowAction action)
 {
     this.eventRow = row;
     this.eventAction = action;
 }
Beispiel #3
0
 public void RemoveDocsSharedRow(DocsSharedRow row)
 {
     this.Rows.Remove(row);
 }
Beispiel #4
0
 public void AddDocsSharedRow(DocsSharedRow row)
 {
     this.Rows.Add(row);
 }
Beispiel #5
0
 public DocsSharedRowChangeEvent(DocsSharedRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Beispiel #6
0
 public void RemoveDocsSharedRow(DocsSharedRow row)
 {
     this.Rows.Remove(row);
 }
Beispiel #7
0
 public void AddDocsSharedRow(DocsSharedRow row)
 {
     this.Rows.Add(row);
 }