Spread Windows Forms 7.0 Product Documentation
Setting the Height or Width of Header Cells
Support Options
Spread Windows Forms 7.0 Product Documentation > Developer's Guide > Customizing Row, Column, and Cell Appearance > Customizing the Appearance of Headers > Setting the Height or Width of Header Cells

Glossary Item Box

You can customize the appearance of header cells by changing the row height or column width, or both, to any of the rows or columns of headers.

You can change the size by accessing respective properties in the RowHeader class for the row header or the ColumnHeader class for the column header or both.

Header with row heightened and column widened

Example

C# Copy Code
private void Form1_Load(object sender, System.EventArgs e)
{
   // Change the column header height to 90 pixels.
   fpSpread1.ActiveSheet.ColumnHeader.Rows[0].Height = 90;
   // Change the row header width to 80 pixels.
   fpSpread1.ActiveSheet.RowHeader.Columns[0].Width = 80;   
}
VB Copy Code
Private Sub Form1_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load
   ' Change the column header height to 90 pixels.
   FpSpread1.ActiveSheet.ColumnHeader.Rows(0).Height = 90
   ' Change the row header width to 80 pixels.
   FpSpread1.ActiveSheet.RowHeader.Columns(0).Width = 80
End Sub
© 2002-2014 ComponentOne, a division of GrapeCity. All Rights Reserved.