To change the font of a table column, set the Font property for the column. Add the following code to the Form_Load event before the Add and Generate methods:
To write code in Visual Basic
| Visual Basic |
Copy Code
|
|---|---|
table.Cols(0).Style.Font = New Font("Arial", 12, FontStyle.Bold)
|
|
To write code in C#
| C# |
Copy Code
|
|---|---|
table.Cols[0].Style.Font = new Font("Arial", 12, FontStyle.Bold);
|
|
The text in the first column appears in 12 point, Bold Arial font:
