 ---------------------------------------------------
|                                                   |
| Booking Table                                     |
|                                                   |
| iGrid.NET 1.60 Extra Samples                      |
| Copyright (c) 10Tec Company                       |
| All rights reserved                               |
|                                                   |
| Environment: .NET Framework 1.1, VS2003           |
|                                                   |
 ---------------------------------------------------
 
Description:
============
This project shows how you can customize the column header (add new rows, show 
text vertically, colorize) and cells by the example of a booking table.

Short Code Explanation:
=======================
In this sample we created a grid which represents a booking table. In the form-
load method we create a complex multi-row header with vertical text in cells, 
add columns which represent separate days, and set up the cell background color, 
text, and font. To show text vertically, we assign the DirectionVertical flag to 
the TextFormatFlags property of a column header style object; to add header 
rows, we invoke an Add method of the collection returned by the Rows property of 
the Header object property; to merge header cells vertically or horizontally, we 
modify the SpanRows or SpanCols property respectively; to set up cells 
background color, we create a new iGCellStyle object, modify its BackColor 
property and assign it to the cells.