DataGridViewContentAlignment Enum

Definition

Defines constants that indicate the alignment of content within a DataGridView cell.

public enum class DataGridViewContentAlignment
public enum DataGridViewContentAlignment
type DataGridViewContentAlignment = 
Public Enum DataGridViewContentAlignment
Inheritance
DataGridViewContentAlignment

Fields

BottomCenter 512

The content is aligned vertically at the bottom and horizontally at the center of a cell.

BottomLeft 256

The content is aligned vertically at the bottom and horizontally at the left of a cell.

BottomRight 1024

The content is aligned vertically at the bottom and horizontally at the right of a cell.

MiddleCenter 32

The content is aligned at the vertical and horizontal center of a cell.

MiddleLeft 16

The content is aligned vertically at the middle and horizontally at the left of a cell.

MiddleRight 64

The content is aligned vertically at the middle and horizontally at the right of a cell.

NotSet 0

The alignment is not set.

TopCenter 2

The content is aligned vertically at the top and horizontally at the center of a cell.

TopLeft 1

The content is aligned vertically at the top and horizontally at the left of a cell.

TopRight 4

The content is aligned vertically at the top and horizontally at the right of a cell.

Examples

The following code example illustrates the use of this type. For more information, see How to: Format Data in the Windows Forms DataGridView Control.

this.dataGridView1.Columns["CustomerName"].DefaultCellStyle
    .Alignment = DataGridViewContentAlignment.MiddleRight;
Me.dataGridView1.Columns("CustomerName").DefaultCellStyle _
    .Alignment = DataGridViewContentAlignment.MiddleRight

Remarks

This enumeration is used by the DataGridViewCellStyle.Alignment property.

Applies to

See also