Skip to main content
All docs
V25.1
  • TranslateBehaviorProperties.Languages Property

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

    Namespace: DevExpress.AIIntegration.WinForms

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

    NuGet Package: DevExpress.AIIntegration.WinForms

    Declaration

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

    Property Value

    Type Description
    IEnumerable<DevExpress.AIIntegration.WinForms.LanguageInfo>

    The collection of target languages for text translation.

    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