GridColumn.ImageAlignment Property
Gets or sets the column header image alignment.
Namespace: DevExpress.XtraGrid.Columns
Assembly: DevExpress.XtraGrid.v24.1.dll
NuGet Packages: DevExpress.Win.Grid, DevExpress.Win.Navigation
Declaration
[Browsable(false)]
[DefaultValue(StringAlignment.Near)]
[DXCategory("Appearance")]
[EditorBrowsable(EditorBrowsableState.Never)]
[XtraSerializableProperty]
public virtual StringAlignment ImageAlignment { get; set; }
Property Value
Type | Default | Description |
---|---|---|
StringAlignment | Near | A System.Drawing.StringAlignment enumeration member specifying the image alignment. |
Remarks
The ImageAlignment property provides the following image alignment options:
Member Name | Description |
---|---|
Center | The image is centered. The header text is not displayed in this case. |
Far | The image is right-aligned. |
Near | The image is left-aligned. |
Note: use the GridColumn.ImageIndex property to specify the image displayed within the column header.
See Also