public NoRow AddNoRow(string Codigo, RaizRow parentRaizRowByRaiz_No, string Nome, string Url, string Descricao, bool PermiteAcessoInternet) { NoRow rowNoRow = ((NoRow)(this.NewRow())); rowNoRow.ItemArray = new object[] { Codigo, parentRaizRowByRaiz_No[0], Nome, Url, Descricao, PermiteAcessoInternet}; this.Rows.Add(rowNoRow); return rowNoRow; }
public void AddRaizRow(RaizRow row) { this.Rows.Add(row); }
public void RemoveRaizRow(RaizRow row) { this.Rows.Remove(row); }
public RaizRowChangeEvent(RaizRow row, System.Data.DataRowAction action) { this.eventRow = row; this.eventAction = action; }