Skip to main content
A newer version of this page is available. .

DXErrorProvider.SetIconAlignment(Control, ErrorIconAlignment) Method

Specifies the alignment of an error icon for a control.

Namespace: DevExpress.XtraEditors.DXErrorProvider

Assembly: DevExpress.XtraEditors.v18.2.dll

Declaration

public void SetIconAlignment(
    Control control,
    ErrorIconAlignment alignment
)

Parameters

Name Type Description
control Control

The control for which the error icon alignment is specified.

alignment ErrorIconAlignment

A ErrorIconAlignment value that specifies the alignment of the control’s error icon.

Remarks

Errors can be assigned to editors via their BaseEdit.ErrorText properties and the methods of the DXErrorProvider class. When an error is assigned, an error icon is displayed within the editor. Its position can be adjused via the SetIconAlignment method or the BaseEdit.ErrorIconAlignment property:

DXErrorProvider_ErrorIconAlignment_Right

To return the current error icon alignment, the DXErrorProvider.GetIconAlignment method can be used.

Note

The SetIconAlignment method is only in effect for BaseEdit control descendants

See Also