'Declaration Public Property SpellChecker As Infragistics.Win.UltraWinSpellChecker.IUltraSpellChecker
public Infragistics.Win.UltraWinSpellChecker.IUltraSpellChecker SpellChecker {get; set;}
Imports Infragistics.Shared Imports Infragistics.Win Imports Infragistics.Win.Misc Imports Infragistics.Win.FormattedLinkLabel Private Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles button1.Click ' Set the value to text containing a misspelled word for testing purposes. Me.ultraFormattedTextEditor1.Value = "mispeled word" ' Create an UltraSpellChecker instance. You can also put an UltraSpellChecker ' component on the form at design-time. Dim spellChecker As Infragistics.Win.UltraWinSpellChecker.UltraSpellChecker = _ New Infragistics.Win.UltraWinSpellChecker.UltraSpellChecker() ' Set SpellChecker to an instance of UltraSpellChecker. Me.ultraFormattedTextEditor1.SpellChecker = spellChecker ' Specll checking related settings are available on the spell-checker itself. spellChecker.Mode = Infragistics.Win.UltraWinSpellChecker.SpellCheckingMode.AsYouType ' To display a list of suggested words in the context menu when the user ' right-clicks on a misspelled word, set the ContextMenuItems to a value ' that contains SpellingSuggestions flag. Here we are setting it to All ' which enables SpellingSuggestions as well. Me.ultraFormattedTextEditor1.ContextMenuItems = FormattedTextMenuItems.All End Sub
using Infragistics.Shared; using Infragistics.Win; using Infragistics.Win.Misc; using Infragistics.Win.FormattedLinkLabel; using System.Diagnostics; private void button1_Click(object sender, System.EventArgs e) { // Set the value to text containing a misspelled word for testing purposes. this.ultraFormattedTextEditor1.Value = "mispeled word"; // Create an UltraSpellChecker instance. You can also put an UltraSpellChecker // component on the form at design-time. Infragistics.Win.UltraWinSpellChecker.UltraSpellChecker spellChecker = new Infragistics.Win.UltraWinSpellChecker.UltraSpellChecker( ); // Set SpellChecker to an instance of UltraSpellChecker. this.ultraFormattedTextEditor1.SpellChecker = spellChecker; // Specll checking related settings are available on the spell-checker itself. spellChecker.Mode = Infragistics.Win.UltraWinSpellChecker.SpellCheckingMode.AsYouType; // To display a list of suggested words in the context menu when the user // right-clicks on a misspelled word, set the ContextMenuItems to a value // that contains SpellingSuggestions flag. Here we are setting it to All // which enables SpellingSuggestions as well. this.ultraFormattedTextEditor1.ContextMenuItems = FormattedTextMenuItems.All; }
Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2