Example 1. Printing the whole table from top to bottom

Top  Previous  Next

private void Table1_ManualBuild(object sender, EventArgs e)

{

  // printing row 0 and all of its columns

  Table1.PrintRow(0);

  Table1.PrintColumns();

 

  // printing row 1 and all of its columns

  Table1.PrintRow(1);

  Table1.PrintColumns();

 

  // Printing row 2 and all of its columns

  Table1.PrintRow(2);

  Table1.PrintColumns();

}

 

As a result, the following table will be printed, which does not differ from the template:

 

tableExample1