Developer

NextGrid

Namespace: NextSuite
Assembly: NextSuite (in NextSuite.dll) Version: 1.0.0.1 (1.0.0.0)

AddRow

Add specified number of rows at the end of rows array.

nxGridRow AddRow(int count);

Parameters


count
System.int
Specify number of rows to be added.

AddRows

Add specified number of rows at the end of rows array.

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

Parameters


cols
Int32 array
Indicate column indexes
values
Object array
Indicate column indexes
Example:

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

AssignEditing

Assign value inside Inplace-edit back to the cell.

void AssignEditing(Boolean endEditing);

Parameters


endEditing
Boolean
Specify whether grid will exit from edit-mode.

See also