Skip to main content

ExcelFilteringDataEventArgs.ImageAlignment Property

Gets or sets the alignment of images fetched from the column’s image combo box editor to the filter menu. For internal use.

Namespace: DevExpress.XtraEditors.Filtering

Assembly: DevExpress.XtraEditors.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

[Browsable(false)]
[EditorBrowsable(EditorBrowsableState.Never)]
public HorzAlignment ImageAlignment { get; set; }

Property Value

Type Description
HorzAlignment

A HorzAlignment enumeration value that specifies the image alignment.

Available values:

Name Description
Default

Places an object or text at the default position, which is determined by a control.

Near

Places an object/text at a near position.

Center

Centers an object or text within a region.

Far

Places an object/text at a far position.

Remarks

If the column’s editor is the image combo box editor (see ImageComboBoxEdit), filters in the menu also display the corresponding images. The image alignment in the menu is specified according to the image alignment in the editor by default (see RepositoryItemImageComboBox.GlyphAlignment). The ImageAlignment property allows you to change the image alignment. Typically, you do not need to modify this property.

See Also