Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+
Row

SpreadsheetHorizontalAlignment Enum

Lists the values used to specify horizontal alignment of data within a cell.

Namespace: DevExpress.Spreadsheet

Assembly: DevExpress.Spreadsheet.v19.1.Core.dll

Declaration

public enum SpreadsheetHorizontalAlignment

Members

Name Description
General

The cell content is horizontally aligned according to the data type (text is aligned to the left; numbers, date and time values are aligned to the right; boolean and error values are centered).

Left

The cell content is horizontally aligned on the left.

Center

The cell content is centered horizontally.

Right

The cell content is horizontally aligned on the right.

Fill

Repeats the cell content across the whole width of the cell.

Justify

The text is wrapped to fully fit into the cell width and each line of text (except the last line) is horizontally justified to the right and left of the cell.

CenterContinuous

The cell content is centered horizontally across multiple cells.

Distributed

The text is wrapped to fit into the cell width and each line of text is horizontally distributed across the full width of the cell. This alignment type allows applying an indent to both the left and right sides of the cell.

Remarks

The SpreadsheetHorizontalAlignment enumerator members are used to set the Alignment.Horizontal property.

For details on how to align data within cells, see the How to: Align Cell Content topic.

See Also