Aspose.Cells.GridWeb.Examples.CSharp.Articles.DataSet1.CategoriesDataTable.AddCategoriesRow C# (CSharp) Method

AddCategoriesRow() private method

private AddCategoriesRow ( string CategoryName, string Description, byte Picture ) : CategoriesRow
CategoryName string
Description string
Picture byte
return CategoriesRow
            public CategoriesRow AddCategoriesRow(string CategoryName, string Description, byte[] Picture) {
                CategoriesRow rowCategoriesRow = ((CategoriesRow)(this.NewRow()));
                object[] columnValuesArray = new object[] {
                        null,
                        CategoryName,
                        Description,
                        Picture};
                rowCategoriesRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowCategoriesRow);
                return rowCategoriesRow;
            }
            

Same methods

DataSet1.CategoriesDataTable::AddCategoriesRow ( CategoriesRow row ) : void