public ExamplesRow AddExamplesRow(string Category, string Name, string Message, string Description) { ExamplesRow rowExamplesRow = ((ExamplesRow)(this.NewRow())); object[] columnValuesArray = new object[] { Category, Name, Message, Description }; rowExamplesRow.ItemArray = columnValuesArray; this.Rows.Add(rowExamplesRow); return(rowExamplesRow); }
public ExamplesRowChangeEvent(ExamplesRow row, global::System.Data.DataRowAction action) { this.eventRow = row; this.eventAction = action; }
public void RemoveExamplesRow(ExamplesRow row) { this.Rows.Remove(row); }
public void AddExamplesRow(ExamplesRow row) { this.Rows.Add(row); }