Aspose.Cells.GridWeb.Examples.CSharp.Articles.DataSet1.CustomersDataTable.AddCustomersRow C# (CSharp) Method

AddCustomersRow() private method

private AddCustomersRow ( string Address, string City, string CompanyName, string ContactName, string ContactTitle, string Country, string CustomerID, string Fax, string Phone, string PostalCode, string Region ) : CustomersRow
Address string
City string
CompanyName string
ContactName string
ContactTitle string
Country string
CustomerID string
Fax string
Phone string
PostalCode string
Region string
return CustomersRow
            public CustomersRow AddCustomersRow(string Address, string City, string CompanyName, string ContactName, string ContactTitle, string Country, string CustomerID, string Fax, string Phone, string PostalCode, string Region) {
                CustomersRow rowCustomersRow = ((CustomersRow)(this.NewRow()));
                object[] columnValuesArray = new object[] {
                        Address,
                        City,
                        CompanyName,
                        ContactName,
                        ContactTitle,
                        Country,
                        CustomerID,
                        Fax,
                        Phone,
                        PostalCode,
                        Region};
                rowCustomersRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowCustomersRow);
                return rowCustomersRow;
            }
            

Same methods

DataSet1.CustomersDataTable::AddCustomersRow ( CustomersRow row ) : void