| SharpLeaf Reference > Table Methods > NextCell Method Table.NextCell MethodMove cell pointer to arbitrary cell. public void NextCell(
    int col,
    int row
);
colcolumn of target cell – positive from left, negative from right, 0 for next non-existing.
rowrow of target cell – positive from top, negative from bottom, 0 for next non-existing.
 Example   tb.NextCell(1,-1);  // first column, last row
 See also ...Filling cells of a Table | Table Members | Table.Column Property | Table.Row Property 
 Send comments on this topic© Dyalog Ltd 2021
 |