public SnippetsTableRow AddSnippetsTableRow(string Name, string Category, string Description, string SnippetCode, string SampleCode, string Dependencies, string EdgeStyle, string NodeStyle) { SnippetsTableRow rowSnippetsTableRow = ((SnippetsTableRow)(this.NewRow())); object[] columnValuesArray = new object[] { null, Name, Category, Description, SnippetCode, SampleCode, Dependencies, EdgeStyle, NodeStyle }; rowSnippetsTableRow.ItemArray = columnValuesArray; this.Rows.Add(rowSnippetsTableRow); return(rowSnippetsTableRow); }
public SnippetsTableRowChangeEvent(SnippetsTableRow row, global::System.Data.DataRowAction action) { this.eventRow = row; this.eventAction = action; }
public void RemoveSnippetsTableRow(SnippetsTableRow row) { this.Rows.Remove(row); }
public void AddSnippetsTableRow(SnippetsTableRow row) { this.Rows.Add(row); }