Skip to main content
All docs
V24.2

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

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