Example #1
0
            public WebsiteRow AddWebsiteRow(string URL, string Name, string ImageIndex)
            {
                WebsiteRow rowWebsiteRow = ((WebsiteRow)(this.NewRow()));

                rowWebsiteRow.ItemArray = new object[] {
                    URL,
                    Name,
                    ImageIndex
                };
                this.Rows.Add(rowWebsiteRow);
                return(rowWebsiteRow);
            }
Example #2
0
 public WebsiteRowChangeEvent(WebsiteRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Example #3
0
 public void RemoveWebsiteRow(WebsiteRow row)
 {
     this.Rows.Remove(row);
 }
Example #4
0
 public void AddWebsiteRow(WebsiteRow row)
 {
     this.Rows.Add(row);
 }