Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

XRBarCode.Validate() Method

Indicates whether or not the bar code is correctly rendered.

Namespace: DevExpress.XtraReports.UI

Assembly: DevExpress.XtraReports.v24.2.dll

NuGet Package: DevExpress.Reporting.Core

#Declaration

public BarCodeError Validate()

#Returns

Type Description
BarCodeError

A BarCodeError enumeration value, identifying the error (BarCodeError.None if the bar code validation succeeds).

#Remarks

Call the Validate method after specifying bar code settings (e.g., in the XRControl.BeforePrint event handler) to make sure that the resulting bar code will be properly rendered in a document.

When validation fails (indicating that the bar code is not rendered), the control displays an error message corresponding to one of the PreviewStringId enumeration values.

To learn about possible errors and the corresponding text displayed in a control, see the BarCodeError enumeration.

See Also