Spread Windows Forms 12.0 Product Documentation
Aligning Cell Contents
Spread Windows Forms 12.0 Product Documentation > Developer's Guide > Customizing Row, Column, and Cell Appearance > Customizing the Appearance of a Cell > Aligning Cell Contents

You can determine how the contents are aligned in a cell or in a group of cells. In code, simply set the HorizontalAlignment property and the VerticalAlignment properties, and make use of the CellHorizontalAlignment and CellVerticalAlignment enumerations. In the Spread Designer, set those properties accordingly. The following figure shows the result of the code in the first example.

Cell Align Example

There are additional properties in the Cell class such as TextIndent and CellPadding that can be used to create extra margins around cell text.

For an explanation of how the alignment affects the overflow of data, refer to Allowing Cell Data to Overflow

You can keep the cell alignment when editing with the AllowEditorVerticalAlign property.

Using the Properties Window

  1. At design time, in the Properties window, select the Spread component.
  2. Select the Sheets property.
  3. Click the button to display the SheetView Collection Editor.
  4. In the Members list, select the sheet in which the cells appear.
  5. In the properties list, select the Cells property and then click the button to display the Cell, Column, and Row Editor.
  6. Select the cells for which you want to set the alignment.
  7. In the properties list, select the HorizontalAlignment property and choose the alignment.
  8. To set the vertical alignment, select the VerticalAlignment property in the properties list and choose the alignment.
  9. Click OK to close the Cell, Column, and Row Editor.
  10. Click OK to close the SheetView Collection Editor.

Using a Shortcut

Set the HorizontalAlignment property and the VerticalAlignment properties for the Cells shortcut object.

Example

This example code sets the horizontal alignment of the first cell (A1) to be right-aligned, the vertical alignment of that cell to be bottom-aligned, and the horizontal alignment and vertical alignment of cells from B2 to C3 to be centered. The preceding figure illustrates the results.

C#
Copy Code
fpSpread1.Sheets[0].Cells[0,0].HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right;
fpSpread1.Sheets[0].Cells[0,0].VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Bottom;
fpSpread1.Sheets[0].Cells[1,1,2,2].HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
fpSpread1.Sheets[0].Cells[1,1,2,2].VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
VB
Copy Code
fpSpread1.Sheets(0).Cells(0,0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right
fpSpread1.Sheets(0).Cells(0,0).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Bottom
fpSpread1.Sheets(0).Cells(1,1,2,2).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center
fpSpread1.Sheets(0).Cells(1,1,2,2).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center

Using Code

Set the HorizontalAlignment property and the VerticalAlignment properties for the Cell object.

Example

This example code sets the horizontal alignment for a specific cell and the vertical alignment for a range of cells.

C#
Copy Code
FarPoint.Win.Spread.Cell cellA1;
cellA1 = fpSpread1.ActiveSheet.Cells[0, 0];
cellA1.HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right;
cellA1.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Bottom;
FarPoint.Win.Spread.Cell cellrange;
cellrange = fpSpread1.ActiveSheet.Cells[1,1,2,2];
cellrange.HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
cellrange.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
VB
Copy Code
Dim cellA1 As FarPoint.Win.Spread.Cell
cellA1 = fpSpread1.ActiveSheet.Cells(0, 0)
cellA1.HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right
cellA1.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Bottom
Dim cellrange As FarPoint.Win.Spread.Cell
cellrange = fpSpread1.ActiveSheet.Cells(1, 1, 2, 2)
cellrange.HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center
cellrange.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center

Using the Spread Designer

  1. In the work area, select the cell or cells for which you want to set the horizontal alignment of the cell contents.
  2. In the properties list (in the Misc category), select the HorizontalAlignment property.
  3. Click the drop-down button to display the choices and choose the alignment.
  4. Repeat these steps and in the properties list, select VerticalAlignment to set the vertical alignment of the cell or cells.
  5. From the File menu choose Apply and Exit to apply your changes to the component and exit Spread Designer.
See Also