Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
80
SpellChecker properties?
posted

I would like to change the title bar text (caption) on the ultraspellchecker control...I would like to change it programmatically to the Text property of the groupbox that the ultratexteditor is contained in...here's my code for spellchecking all the ultrawintexteditors on the seletecd ultrawintab:

    // get group boxes on selected tab, then spellcheck the text editors in those group boxes
        ForEach    gb    Collection(ultraTabControlPsychAssessment.SelectedTab.TabPage.Controls) Type(GroupBox)
            ForEach    ute    Collection(gb.Controls)    Type(Infragistics.Win.UltraWinEditors.UltraTextEditor)

                If ute.Visible

                    ultraSpellChecker.ShowSpellCheckDialog(ute)
                Endif
            Endfor
        Endfor

Using infragistics 10.1 controls in VS2008 under ASNA Visual RPG language

    Is this possible?? Thanks.

Parents Reply Children
No Data