+ total_col = 4 # not all columns to be used for printing
+ total_row = 4
+
+ format = [1, 1.5, 2.5, 4, 5, 7] # column spacing
+
+ # class to print and preview
+ prt = PrintGrid(self, grid, format, total_col, total_row )
+ prt.SetAttributes() # get the colour and text attributes
+
+ table = prt.GetTable() # the table print control class
+ table.SetHeader("Simple Grid Test Header")
+ table.SetFooter()
+
+ prt.Preview() # preview the table