Skip to main content
All docs
V24.2

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

TranslateBehaviorProperties.Languages Property

Gets or sets a collection of target languages for text translation.

Namespace: DevExpress.AIIntegration.WinForms

Assembly: DevExpress.AIIntegration.WinForms.v24.2.dll

NuGet Package: DevExpress.AIIntegration.WinForms

#Declaration

public virtual IEnumerable<LanguageInfo> Languages { get; set; }

#Property Value

Type
IEnumerable<DevExpress.AIIntegration.WinForms.LanguageInfo>

#Remarks

The following code snippet registers a TranslateBehavior and assigns it to a MemoEdit control:

using DevExpress.AIIntegration;
using DevExpress.AIIntegration.WinForms;
using DevExpress.AIIntegration.Desktop;

//...
public partial class MemoEdit : DevExpress.XtraEditors.XtraForm {
    public MemoEdit() {
        InitializeComponent();
            behaviorManager1.Attach<TranslateBehavior>(memoEdit1, behavior => {
                behavior.Properties.Languages = new LanguageInfo[] {
                    new LanguageInfo("de-DE"),
                    new LanguageInfo("es-ES")
                };
            });
    }
}

Read the following help topic for additional information and examples: AI-powered Text Transform Behaviors.

See Also