Exemple #1
0
            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);
 }
Exemple #5
0
 public SnippetsTableRowChangeEvent(SnippetsTableRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Exemple #6
0
 public void RemoveSnippetsTableRow(SnippetsTableRow row)
 {
     this.Rows.Remove(row);
 }
Exemple #7
0
 public void AddSnippetsTableRow(SnippetsTableRow row)
 {
     this.Rows.Add(row);
 }