Skip to main content
All docs
V25.1
  • ReportLocalizationBehavior Class

    An AI-powered Localization functionality that translates all localizable property values to the selected language.

    Namespace: DevExpress.AIIntegration.WinForms.Reporting

    Assembly: DevExpress.AIIntegration.WinForms.Reporting.v25.1.dll

    NuGet Package: DevExpress.AIIntegration.WinForms.Reporting

    Declaration

    public class ReportLocalizationBehavior :
        ReportDesignerBehaviorBase

    Remarks

    The following code registers ReportLocalizationBehavior and attaches it to the WinForms Report Designer control:

    using DevExpress.AIIntegration.WinForms.Reporting;
    // ...
    public partial class Form1 : Form {
        public Form1() {
            InitializeComponent();
            behaviorManager1.Attach<ReportLocalizationBehavior>(reportDesigner1, behavior => { });
        }
    }
    

    Review the following help topic for more information on how to use this functionality in the WinForms Report Designer: Localize Reports in the WinForms Report Designer.

    Inheritance

    Object
    DevExpress.Utils.MVVM.BehaviorBase
    DevExpress.Utils.Behaviors.Behavior
    DevExpress.Utils.Behaviors.Behavior<DevExpress.AIIntegration.WinForms.Reporting.Internal.IReportDesignerBehaviorSource>
    DevExpress.AIIntegration.WinForms.Reporting.Internal.ReportDesignerBehaviorBase
    ReportLocalizationBehavior
    See Also