Spread Windows Forms 9.0 Product Documentation > Developer's Guide > Getting Started > Tutorial: Creating a Checkbook Register > Setting Up the Rows and Columns of the Register |
The Spread control on your form already has a sheet, ready for you to configure. In this step, you are going to set up the columns and cells in the sheet to resemble a checkbook register.
This code sets up the control to be 300 pixels high and 763 pixels wide, and the sheet to have 8 columns and 100 rows.
C# |
Copy Code
|
---|---|
// Set up control and rows and columns in sheet.
fpSpread1.Height = 330;
fpSpread1.Width = 765;
fpSpread1.Sheets[0].ColumnCount = 8;
fpSpread1.Sheets[0].RowCount = 100;
|
VB |
Copy Code
|
---|---|
' Set up control and rows and columns in sheet.
FpSpread1.Height = 330
FpSpread1.Width = 765
FpSpread1.Sheets(0).ColumnCount = 8
FpSpread1.Sheets(0).RowCount = 100
|
C# |
Copy Code
|
---|---|
// Add text to column heading. fpSpread1.Sheets[0].ColumnHeader.Cells[0, 0].Text = "Check #"; fpSpread1.Sheets[0].ColumnHeader.Cells[0, 1].Text = "Date"; fpSpread1.Sheets[0].ColumnHeader.Cells[0, 2].Text = "Description"; fpSpread1.Sheets[0].ColumnHeader.Cells[0, 3].Text = "Tax?"; fpSpread1.Sheets[0].ColumnHeader.Cells[0, 4].Text = "Cleared?"; fpSpread1.Sheets[0].ColumnHeader.Cells[0, 5].Text = "Debit"; fpSpread1.Sheets[0].ColumnHeader.Cells[0, 6].Text = "Credit"; fpSpread1.Sheets[0].ColumnHeader.Cells[0, 7].Text = "Balance"; |
VB |
Copy Code
|
---|---|
' Add text to column heading. FpSpread1.Sheets(0).ColumnHeader.Cells(0, 0).Text = "Check #" FpSpread1.Sheets(0).ColumnHeader.Cells(0, 1).Text = "Date" FpSpread1.Sheets(0).ColumnHeader.Cells(0, 2).Text = "Description" FpSpread1.Sheets(0).ColumnHeader.Cells(0, 3).Text = "Tax?" FpSpread1.Sheets(0).ColumnHeader.Cells(0, 4).Text = "Cleared?" FpSpread1.Sheets(0).ColumnHeader.Cells(0, 5).Text = "Debit" FpSpread1.Sheets(0).ColumnHeader.Cells(0, 6).Text = "Credit" FpSpread1.Sheets(0).ColumnHeader.Cells(0, 7).Text = "Balance" |
C# |
Copy Code
|
---|---|
// Set column widths.
fpSpread1.Sheets[0].Columns[0].Width = 50;
fpSpread1.Sheets[0].Columns[1].Width = 50;
fpSpread1.Sheets[0].Columns[2].Width = 175;
fpSpread1.Sheets[0].Columns[3].Width = 40;
fpSpread1.Sheets[0].Columns[4].Width = 65;
fpSpread1.Sheets[0].Columns[5].Width = 100;
fpSpread1.Sheets[0].Columns[6].Width = 100;
fpSpread1.Sheets[0].Columns[7].Width = 125;
|
VB |
Copy Code
|
---|---|
' Set column widths.
FpSpread1.Sheets(0).Columns(0).Width = 50
FpSpread1.Sheets(0).Columns(1).Width = 50
FpSpread1.Sheets(0).Columns(2).Width = 175
FpSpread1.Sheets(0).Columns(3).Width = 40
FpSpread1.Sheets(0).Columns(4).Width = 65
FpSpread1.Sheets(0).Columns(5).Width = 100
FpSpread1.Sheets(0).Columns(6).Width = 100
FpSpread1.Sheets(0).Columns(7).Width = 125
|
Go to Setting the Cell Types of the Register to continue the tutorial.