Library WinForms NextSuite .NET Controls NextGrid .NET Reference Classes NextGrid AddRows

AddRows

Adds a specified number of rows at the end of rows array.

cs
public void AddRows(Int32[] cols, Object[,] values);

Parameters

cols Int32[]
Indicate column indexes

values Object[,]
Indicate column indexes

Example

cs
nextGrid1.Fill(new Int32[] { 0, 2 },
    new Object[,] { 
    { "Michael",  2 }, 
    { "Lisa", 4 }, 
    { "Andrea", 6 } 
});

Sign in