# C1.Win.SpellChecker.C1SpellChecker

## Content

<div class="doc-site-dotnet-api-container">



  <h1 id="C1_Win_SpellChecker_C1SpellChecker" data-uid="C1.Win.SpellChecker.C1SpellChecker" class="text-break">C1SpellChecker Class
</h1>
  <div class="markdown level0 summary"><p>Component that provides spell-checking services to controls and applications.</p>
</div>
  <div class="markdown level0 conceptual"></div>
  <div class="inheritance">
    <h5>Inheritance</h5>
    <div class="level0"><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.object">object</a></div>
    <div class="level1"><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.marshalbyrefobject">MarshalByRefObject</a></div>
    <div class="level2"><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.componentmodel.component">Component</a></div>
    <div class="level3"><span class="xref">C1SpellChecker</span></div>
  </div>
  <div class="implements">
    <h5>Implements</h5>
    <div><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.componentmodel.icomponent">IComponent</a></div>
    <div><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.idisposable">IDisposable</a></div>
    <div><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.componentmodel.iextenderprovider">IExtenderProvider</a></div>
    <div><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.componentmodel.isupportinitialize">ISupportInitialize</a></div>
  </div>
  <h6><strong>Namespace</strong>: <a class="xref" href="C1.Win.SpellChecker.html">C1.Win.SpellChecker</a></h6>
  <h6><strong>Assembly</strong>: C1.Win.SpellChecker.4.8.dll</h6>
  <h5 id="C1_Win_SpellChecker_C1SpellChecker_syntax">Syntax</h5>
  <div class="codewrapper">
    <pre><code class="lang-csharp hljs">[ToolboxBitmap(typeof(C1SpellChecker), &quot;C1SpellChecker.png&quot;)]
public class C1SpellChecker : Component, IComponent, IDisposable, IExtenderProvider, ISupportInitialize</code></pre>
  </div>
  <div class="codewrapper">
    <pre><code class="lang-vbnet hljs">&lt;ToolboxBitmap(GetType(C1SpellChecker), &quot;C1SpellChecker.png&quot;)&gt;
Public Class C1SpellChecker
    Inherits Component
    Implements IComponent, IDisposable, IExtenderProvider, ISupportInitialize</code></pre>
  </div>
  <h5 id="C1_Win_SpellChecker_C1SpellChecker_remarks"><strong>Remarks</strong></h5>
  <div class="markdown level0 remarks"><p>The <b>C1SpelChecker</b> component supports three spell-checking modes:</p>
<p><b>Batch mode</b></p>
<p>Use the <a class="xref" href="C1.Win.SpellChecker.C1SpellChecker.CheckText.html#C1_Win_SpellChecker_C1SpellChecker_CheckText_System_String_">CheckText(string)</a>, <a class="xref" href="C1.Win.SpellChecker.C1SpellChecker.CheckWord.html#C1_Win_SpellChecker_C1SpellChecker_CheckWord_System_String_">CheckWord(string)</a>, and <a class="xref" href="C1.Win.SpellChecker.C1SpellChecker.GetSuggestions.html#C1_Win_SpellChecker_C1SpellChecker_GetSuggestions_System_String_System_Int32_">GetSuggestions(string, int)</a> 
methods to check strings and get lists of errors and spelling suggestions.</p>
<p><b>Dialog mode</b></p>
<p>Use the <a class="xref" href="C1.Win.SpellChecker.C1SpellChecker.CheckControl.html#C1_Win_SpellChecker_C1SpellChecker_CheckControl_C1_Win_SpellChecker_ISpellCheckableEditor_">CheckControl(ISpellCheckableEditor)</a> method to check the content of any 
<a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.forms.textboxbase">TextBoxBase</a>-derived controls using a modal dialog. The <b>C1SpellChecker</b> will
check the text and display a dialog where the user can choose to correct or ignore each error.</p>
<p>You can also check editors that do not derive from <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.forms.textboxbase">TextBoxBase</a>. To do that, you
have to create a wrapper class that implements the <a class="xref" href="C1.Win.SpellChecker.ISpellCheckableEditor.html">ISpellCheckableEditor</a> interface.</p>
<p><b>As-you-type mode</b></p>
<p>Set the extender property <b>SpellCheck</b> on any <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.forms.textboxbase">TextBoxBase</a>-derived control to true,
and the <b>C1SpellChecker</b> will monitor changes to the control. Any spelling mistakes will be indicated 
on the control by a red, wavy underline; right-clicking the errors will show a context menu with spelling 
suggestions.</p>
<p>You can also provide as-you-type spelling support for editors that do not derive from <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.forms.textboxbase">TextBoxBase</a>.
To do that, you have to create a wrapper class that implements the <a class="xref" href="C1.Win.SpellChecker.ISpellCheckableRichEditor.html">ISpellCheckableRichEditor</a> 
interface.</p>
<p><b>Spell-Checking Options</b></p>
<p>In all three modes described above, the spell-checker follows rules that can be customized using the
<a class="xref" href="C1.Win.SpellChecker.C1SpellChecker.Options.html#C1_Win_SpellChecker_C1SpellChecker_Options">Options</a> property. Options available include types of words to ignore (capitalization, numbers,
URLs), whether to display suggestions in a context menu, the number of suggestions to display, and so on.
</p>
<p><b>Dictionary Deployment</b></p>
<p>The <b>C1SpellChecker</b> component uses spelling dictionaries stored in files with a 'dct' extension.</p>
<p>To select which dictionary to use, use the <a class="xref" href="C1.Win.SpellChecker.C1SpellChecker.MainDictionary.html#C1_Win_SpellChecker_C1SpellChecker_MainDictionary">MainDictionary</a> property and set
<a class="xref" href="C1.Win.SpellChecker.SpellDictionaryBase.FileName.html#C1_Win_SpellChecker_SpellDictionaryBase_FileName">FileName</a> to the name of the file you want to use.</p>
<p>The easiest way to ensure the dictionary is deployed correctly is to add to your projects a reference 
to the dictionary file(s) you want to use, then set the <b>Build Action</b> property to <b>None</b> and 
the <b>Copy to Output Directory</b> property to <b>Copy if newer</b>. This way, the dictionaries will 
be copied to the output directory along with the application executable and the <b>C1SpellChecker</b> 
assembly.</p>
<p>When using this deployment method, make sure the main dictionary's <a class="xref" href="C1.Win.SpellChecker.SpellDictionaryBase.FileName.html#C1_Win_SpellChecker_SpellDictionaryBase_FileName">FileName</a>
value specifies a file name without a path. This way, the component will search for the dictionary in the
directory where the <b>C1SpellChecker</b> assembly is located.</p>
</div>
  <h3 id="constructors">Constructors
</h3>
  <table class="table table-bordered table-condensed">
    <thead>
      <tr>
        <th>Name</th>
        <th>Description</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td id="C1_Win_SpellChecker_C1SpellChecker__ctor" data-uid="C1.Win.SpellChecker.C1SpellChecker.#ctor">
          <a class="xref" href="C1.Win.SpellChecker.C1SpellChecker.-ctor.html#C1_Win_SpellChecker_C1SpellChecker__ctor">C1SpellChecker()</a>
        </td>
        <td class="markdown level1 summary"><p>Initializes a new instance of a <a class="xref" href="C1.Win.SpellChecker.C1SpellChecker.html">C1SpellChecker</a>.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_SpellChecker_C1SpellChecker__ctor_System_ComponentModel_IContainer_" data-uid="C1.Win.SpellChecker.C1SpellChecker.#ctor(System.ComponentModel.IContainer)">
          <a class="xref" href="C1.Win.SpellChecker.C1SpellChecker.-ctor.html#C1_Win_SpellChecker_C1SpellChecker__ctor_System_ComponentModel_IContainer_">C1SpellChecker(IContainer)</a>
        </td>
        <td class="markdown level1 summary"><p>Initializes a new instance of a <a class="xref" href="C1.Win.SpellChecker.C1SpellChecker.html">C1SpellChecker</a>.</p>
</td>
      </tr>
    </tbody>
  </table>
  <h3 id="properties">Properties
</h3>
  <table class="table table-bordered table-condensed">
    <thead>
      <tr>
        <th>Name</th>
        <th>Description</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td id="C1_Win_SpellChecker_C1SpellChecker_AutoReplaceList" data-uid="C1.Win.SpellChecker.C1SpellChecker.AutoReplaceList">
          <a class="xref" href="C1.Win.SpellChecker.C1SpellChecker.AutoReplaceList.html#C1_Win_SpellChecker_C1SpellChecker_AutoReplaceList">AutoReplaceList</a>
        </td>
        <td class="markdown level1 summary"><p>Gets a list of words and replacements to use while spell-checking.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_SpellChecker_C1SpellChecker_CustomDictionary" data-uid="C1.Win.SpellChecker.C1SpellChecker.CustomDictionary">
          <a class="xref" href="C1.Win.SpellChecker.C1SpellChecker.CustomDictionary.html#C1_Win_SpellChecker_C1SpellChecker_CustomDictionary">CustomDictionary</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a custom spell-checking dictionary.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_SpellChecker_C1SpellChecker_CustomParser" data-uid="C1.Win.SpellChecker.C1SpellChecker.CustomParser">
          <a class="xref" href="C1.Win.SpellChecker.C1SpellChecker.CustomParser.html#C1_Win_SpellChecker_C1SpellChecker_CustomParser">CustomParser</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a custom spell-checking parser.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_SpellChecker_C1SpellChecker_Enabled" data-uid="C1.Win.SpellChecker.C1SpellChecker.Enabled">
          <a class="xref" href="C1.Win.SpellChecker.C1SpellChecker.Enabled.html#C1_Win_SpellChecker_C1SpellChecker_Enabled">Enabled</a>
        </td>
        <td class="markdown level1 summary"><p>Gets a value that indicates whether the main spelling dictionary has been loaded.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_SpellChecker_C1SpellChecker_IgnoreList" data-uid="C1.Win.SpellChecker.C1SpellChecker.IgnoreList">
          <a class="xref" href="C1.Win.SpellChecker.C1SpellChecker.IgnoreList.html#C1_Win_SpellChecker_C1SpellChecker_IgnoreList">IgnoreList</a>
        </td>
        <td class="markdown level1 summary"><p>Gets the list of words to ignore during spell-checking.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_SpellChecker_C1SpellChecker_MainDictionary" data-uid="C1.Win.SpellChecker.C1SpellChecker.MainDictionary">
          <a class="xref" href="C1.Win.SpellChecker.C1SpellChecker.MainDictionary.html#C1_Win_SpellChecker_C1SpellChecker_MainDictionary">MainDictionary</a>
        </td>
        <td class="markdown level1 summary"><p>Gets the main dictionary used for spell-checking.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_SpellChecker_C1SpellChecker_MaxWordLength" data-uid="C1.Win.SpellChecker.C1SpellChecker.MaxWordLength">
          <a class="xref" href="C1.Win.SpellChecker.C1SpellChecker.MaxWordLength.html#C1_Win_SpellChecker_C1SpellChecker_MaxWordLength">MaxWordLength</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the maximum length of words that are spell-checked.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_SpellChecker_C1SpellChecker_Options" data-uid="C1.Win.SpellChecker.C1SpellChecker.Options">
          <a class="xref" href="C1.Win.SpellChecker.C1SpellChecker.Options.html#C1_Win_SpellChecker_C1SpellChecker_Options">Options</a>
        </td>
        <td class="markdown level1 summary"><p>Gets a <a class="xref" href="C1.Win.SpellChecker.SpellOptions.html">SpellOptions</a> object that specifies spell-checking options.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_SpellChecker_C1SpellChecker_UserDictionary" data-uid="C1.Win.SpellChecker.C1SpellChecker.UserDictionary">
          <a class="xref" href="C1.Win.SpellChecker.C1SpellChecker.UserDictionary.html#C1_Win_SpellChecker_C1SpellChecker_UserDictionary">UserDictionary</a>
        </td>
        <td class="markdown level1 summary"><p>Gets the user dictionary used for spell-checking.</p>
</td>
      </tr>
    </tbody>
  </table>
  <h3 id="methods">Methods
</h3>
  <table class="table table-bordered table-condensed">
    <thead>
      <tr>
        <th>Name</th>
        <th>Description</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td id="C1_Win_SpellChecker_C1SpellChecker_BeginInit" data-uid="C1.Win.SpellChecker.C1SpellChecker.BeginInit">
          <a class="xref" href="C1.Win.SpellChecker.C1SpellChecker.BeginInit.html#C1_Win_SpellChecker_C1SpellChecker_BeginInit">BeginInit()</a>
        </td>
        <td class="markdown level1 summary"></td>
      </tr>
      <tr>
        <td id="C1_Win_SpellChecker_C1SpellChecker_CheckControl_C1_Win_SpellChecker_ISpellCheckableEditor_" data-uid="C1.Win.SpellChecker.C1SpellChecker.CheckControl(C1.Win.SpellChecker.ISpellCheckableEditor)">
          <a class="xref" href="C1.Win.SpellChecker.C1SpellChecker.CheckControl.html#C1_Win_SpellChecker_C1SpellChecker_CheckControl_C1_Win_SpellChecker_ISpellCheckableEditor_">CheckControl(ISpellCheckableEditor)</a>
        </td>
        <td class="markdown level1 summary"><p>Shows a spell-checking dialog for an editor and returns the number of spelling errors found.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_SpellChecker_C1SpellChecker_CheckControl_C1_Win_SpellChecker_ISpellCheckableEditor_System_Boolean_" data-uid="C1.Win.SpellChecker.C1SpellChecker.CheckControl(C1.Win.SpellChecker.ISpellCheckableEditor,System.Boolean)">
          <a class="xref" href="C1.Win.SpellChecker.C1SpellChecker.CheckControl.html#C1_Win_SpellChecker_C1SpellChecker_CheckControl_C1_Win_SpellChecker_ISpellCheckableEditor_System_Boolean_">CheckControl(ISpellCheckableEditor, bool)</a>
        </td>
        <td class="markdown level1 summary"><p>Shows a spell-checking dialog for an editor and returns the number of spelling errors found.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_SpellChecker_C1SpellChecker_CheckControl_C1_Win_SpellChecker_ISpellCheckableEditor_System_Boolean_C1_Win_SpellChecker_ISpellDialog_" data-uid="C1.Win.SpellChecker.C1SpellChecker.CheckControl(C1.Win.SpellChecker.ISpellCheckableEditor,System.Boolean,C1.Win.SpellChecker.ISpellDialog)">
          <a class="xref" href="C1.Win.SpellChecker.C1SpellChecker.CheckControl.html#C1_Win_SpellChecker_C1SpellChecker_CheckControl_C1_Win_SpellChecker_ISpellCheckableEditor_System_Boolean_C1_Win_SpellChecker_ISpellDialog_">CheckControl(ISpellCheckableEditor, bool, ISpellDialog)</a>
        </td>
        <td class="markdown level1 summary"><p>Shows a spell-checking dialog for an editor and returns the number of spelling errors found.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_SpellChecker_C1SpellChecker_CheckControl_System_Windows_Forms_Control_System_Object_" data-uid="C1.Win.SpellChecker.C1SpellChecker.CheckControl(System.Windows.Forms.Control,System.Object)">
          <a class="xref" href="C1.Win.SpellChecker.C1SpellChecker.CheckControl.html#C1_Win_SpellChecker_C1SpellChecker_CheckControl_System_Windows_Forms_Control_System_Object_">CheckControl(Control, object)</a>
        </td>
        <td class="markdown level1 summary"><p>Shows a spell-checking dialog for a control which supports the <b>IHtmlDocument2</b> interface,
returns the number of spelling errors found.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_SpellChecker_C1SpellChecker_CheckControl_System_Windows_Forms_Control_System_Object_System_Boolean_" data-uid="C1.Win.SpellChecker.C1SpellChecker.CheckControl(System.Windows.Forms.Control,System.Object,System.Boolean)">
          <a class="xref" href="C1.Win.SpellChecker.C1SpellChecker.CheckControl.html#C1_Win_SpellChecker_C1SpellChecker_CheckControl_System_Windows_Forms_Control_System_Object_System_Boolean_">CheckControl(Control, object, bool)</a>
        </td>
        <td class="markdown level1 summary"><p>Shows a spell-checking dialog for a control which supports the <b>IHtmlDocument2</b> interface,
returns the number of spelling errors found.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_SpellChecker_C1SpellChecker_CheckControl_System_Windows_Forms_Control_System_Object_System_Boolean_C1_Win_SpellChecker_ISpellDialog_" data-uid="C1.Win.SpellChecker.C1SpellChecker.CheckControl(System.Windows.Forms.Control,System.Object,System.Boolean,C1.Win.SpellChecker.ISpellDialog)">
          <a class="xref" href="C1.Win.SpellChecker.C1SpellChecker.CheckControl.html#C1_Win_SpellChecker_C1SpellChecker_CheckControl_System_Windows_Forms_Control_System_Object_System_Boolean_C1_Win_SpellChecker_ISpellDialog_">CheckControl(Control, object, bool, ISpellDialog)</a>
        </td>
        <td class="markdown level1 summary"><p>Shows a spell-checking dialog for a control which supports the <b>IHtmlDocument2</b> interface,
returns the number of spelling errors found.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_SpellChecker_C1SpellChecker_CheckControl_System_Windows_Forms_TextBoxBase_" data-uid="C1.Win.SpellChecker.C1SpellChecker.CheckControl(System.Windows.Forms.TextBoxBase)">
          <a class="xref" href="C1.Win.SpellChecker.C1SpellChecker.CheckControl.html#C1_Win_SpellChecker_C1SpellChecker_CheckControl_System_Windows_Forms_TextBoxBase_">CheckControl(TextBoxBase)</a>
        </td>
        <td class="markdown level1 summary"><p>Shows a spell-checking dialog for an editor, returns the number of spelling errors found.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_SpellChecker_C1SpellChecker_CheckControl_System_Windows_Forms_TextBoxBase_System_Boolean_" data-uid="C1.Win.SpellChecker.C1SpellChecker.CheckControl(System.Windows.Forms.TextBoxBase,System.Boolean)">
          <a class="xref" href="C1.Win.SpellChecker.C1SpellChecker.CheckControl.html#C1_Win_SpellChecker_C1SpellChecker_CheckControl_System_Windows_Forms_TextBoxBase_System_Boolean_">CheckControl(TextBoxBase, bool)</a>
        </td>
        <td class="markdown level1 summary"><p>Shows a spell-checking dialog for an editor, returns the number of spelling errors found.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_SpellChecker_C1SpellChecker_CheckControl_System_Windows_Forms_TextBoxBase_System_Boolean_C1_Win_SpellChecker_ISpellDialog_" data-uid="C1.Win.SpellChecker.C1SpellChecker.CheckControl(System.Windows.Forms.TextBoxBase,System.Boolean,C1.Win.SpellChecker.ISpellDialog)">
          <a class="xref" href="C1.Win.SpellChecker.C1SpellChecker.CheckControl.html#C1_Win_SpellChecker_C1SpellChecker_CheckControl_System_Windows_Forms_TextBoxBase_System_Boolean_C1_Win_SpellChecker_ISpellDialog_">CheckControl(TextBoxBase, bool, ISpellDialog)</a>
        </td>
        <td class="markdown level1 summary"><p>Shows a spell-checking dialog for an editor, returns the number of spelling errors found.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_SpellChecker_C1SpellChecker_CheckControl_System_Windows_Forms_WebBrowser_" data-uid="C1.Win.SpellChecker.C1SpellChecker.CheckControl(System.Windows.Forms.WebBrowser)">
          <a class="xref" href="C1.Win.SpellChecker.C1SpellChecker.CheckControl.html#C1_Win_SpellChecker_C1SpellChecker_CheckControl_System_Windows_Forms_WebBrowser_">CheckControl(WebBrowser)</a>
        </td>
        <td class="markdown level1 summary"><p>Shows a spell-checking dialog for a browser, returns the number of spelling errors found.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_SpellChecker_C1SpellChecker_CheckControl_System_Windows_Forms_WebBrowser_System_Boolean_" data-uid="C1.Win.SpellChecker.C1SpellChecker.CheckControl(System.Windows.Forms.WebBrowser,System.Boolean)">
          <a class="xref" href="C1.Win.SpellChecker.C1SpellChecker.CheckControl.html#C1_Win_SpellChecker_C1SpellChecker_CheckControl_System_Windows_Forms_WebBrowser_System_Boolean_">CheckControl(WebBrowser, bool)</a>
        </td>
        <td class="markdown level1 summary"><p>Shows a spell-checking dialog for a browser, returns the number of spelling errors found.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_SpellChecker_C1SpellChecker_CheckControl_System_Windows_Forms_WebBrowser_System_Boolean_C1_Win_SpellChecker_ISpellDialog_" data-uid="C1.Win.SpellChecker.C1SpellChecker.CheckControl(System.Windows.Forms.WebBrowser,System.Boolean,C1.Win.SpellChecker.ISpellDialog)">
          <a class="xref" href="C1.Win.SpellChecker.C1SpellChecker.CheckControl.html#C1_Win_SpellChecker_C1SpellChecker_CheckControl_System_Windows_Forms_WebBrowser_System_Boolean_C1_Win_SpellChecker_ISpellDialog_">CheckControl(WebBrowser, bool, ISpellDialog)</a>
        </td>
        <td class="markdown level1 summary"><p>Shows a spell-checking dialog for a browser, returns the number of spelling errors found.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_SpellChecker_C1SpellChecker_CheckText_System_String_" data-uid="C1.Win.SpellChecker.C1SpellChecker.CheckText(System.String)">
          <a class="xref" href="C1.Win.SpellChecker.C1SpellChecker.CheckText.html#C1_Win_SpellChecker_C1SpellChecker_CheckText_System_String_">CheckText(string)</a>
        </td>
        <td class="markdown level1 summary"><p>Checks a string containing text and returns a list of spelling errors.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_SpellChecker_C1SpellChecker_CheckText_System_String_System_Int32_" data-uid="C1.Win.SpellChecker.C1SpellChecker.CheckText(System.String,System.Int32)">
          <a class="xref" href="C1.Win.SpellChecker.C1SpellChecker.CheckText.html#C1_Win_SpellChecker_C1SpellChecker_CheckText_System_String_System_Int32_">CheckText(string, int)</a>
        </td>
        <td class="markdown level1 summary"><p>Checks a string containing text and returns a list of spelling errors.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_SpellChecker_C1SpellChecker_CheckText_System_String_System_Int32_System_Int32_" data-uid="C1.Win.SpellChecker.C1SpellChecker.CheckText(System.String,System.Int32,System.Int32)">
          <a class="xref" href="C1.Win.SpellChecker.C1SpellChecker.CheckText.html#C1_Win_SpellChecker_C1SpellChecker_CheckText_System_String_System_Int32_System_Int32_">CheckText(string, int, int)</a>
        </td>
        <td class="markdown level1 summary"><p>Checks a string containing text and returns a list of spelling errors.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_SpellChecker_C1SpellChecker_CheckWord_System_String_" data-uid="C1.Win.SpellChecker.C1SpellChecker.CheckWord(System.String)">
          <a class="xref" href="C1.Win.SpellChecker.C1SpellChecker.CheckWord.html#C1_Win_SpellChecker_C1SpellChecker_CheckWord_System_String_">CheckWord(string)</a>
        </td>
        <td class="markdown level1 summary"><p>Checks a word to see if it's spelled correctly.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_SpellChecker_C1SpellChecker_Dispose_System_Boolean_" data-uid="C1.Win.SpellChecker.C1SpellChecker.Dispose(System.Boolean)">
          <a class="xref" href="C1.Win.SpellChecker.C1SpellChecker.Dispose.html#C1_Win_SpellChecker_C1SpellChecker_Dispose_System_Boolean_">Dispose(bool)</a>
        </td>
        <td class="markdown level1 summary"></td>
      </tr>
      <tr>
        <td id="C1_Win_SpellChecker_C1SpellChecker_EndInit" data-uid="C1.Win.SpellChecker.C1SpellChecker.EndInit">
          <a class="xref" href="C1.Win.SpellChecker.C1SpellChecker.EndInit.html#C1_Win_SpellChecker_C1SpellChecker_EndInit">EndInit()</a>
        </td>
        <td class="markdown level1 summary"></td>
      </tr>
      <tr>
        <td id="C1_Win_SpellChecker_C1SpellChecker_GetActiveSpellChecking_C1_Win_SpellChecker_ISpellCheckableRichEditor_" data-uid="C1.Win.SpellChecker.C1SpellChecker.GetActiveSpellChecking(C1.Win.SpellChecker.ISpellCheckableRichEditor)">
          <a class="xref" href="C1.Win.SpellChecker.C1SpellChecker.GetActiveSpellChecking.html#C1_Win_SpellChecker_C1SpellChecker_GetActiveSpellChecking_C1_Win_SpellChecker_ISpellCheckableRichEditor_">GetActiveSpellChecking(ISpellCheckableRichEditor)</a>
        </td>
        <td class="markdown level1 summary"><p>Gets whether the <a class="xref" href="C1.Win.SpellChecker.C1SpellChecker.html">C1SpellChecker</a> should highlight spelling mistakes
as the user types on a given <a class="xref" href="C1.Win.SpellChecker.ISpellCheckableRichEditor.html">ISpellCheckableRichEditor</a>.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_SpellChecker_C1SpellChecker_GetActiveSpellChecking_System_Windows_Forms_Control_" data-uid="C1.Win.SpellChecker.C1SpellChecker.GetActiveSpellChecking(System.Windows.Forms.Control)">
          <a class="xref" href="C1.Win.SpellChecker.C1SpellChecker.GetActiveSpellChecking.html#C1_Win_SpellChecker_C1SpellChecker_GetActiveSpellChecking_System_Windows_Forms_Control_">GetActiveSpellChecking(Control)</a>
        </td>
        <td class="markdown level1 summary"><p>Gets whether the <a class="xref" href="C1.Win.SpellChecker.C1SpellChecker.html">C1SpellChecker</a> should highlight spelling mistakes
as the user types on a given <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.forms.control">Control</a>.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_SpellChecker_C1SpellChecker_GetActiveSpellChecking_System_Windows_Forms_TextBoxBase_" data-uid="C1.Win.SpellChecker.C1SpellChecker.GetActiveSpellChecking(System.Windows.Forms.TextBoxBase)">
          <a class="xref" href="C1.Win.SpellChecker.C1SpellChecker.GetActiveSpellChecking.html#C1_Win_SpellChecker_C1SpellChecker_GetActiveSpellChecking_System_Windows_Forms_TextBoxBase_">GetActiveSpellChecking(TextBoxBase)</a>
        </td>
        <td class="markdown level1 summary"><p>Gets whether the <a class="xref" href="C1.Win.SpellChecker.C1SpellChecker.html">C1SpellChecker</a> should highlight spelling mistakes
as the user types on a given <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.forms.textboxbase">TextBoxBase</a>.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_SpellChecker_C1SpellChecker_GetSuggestions_System_String_" data-uid="C1.Win.SpellChecker.C1SpellChecker.GetSuggestions(System.String)">
          <a class="xref" href="C1.Win.SpellChecker.C1SpellChecker.GetSuggestions.html#C1_Win_SpellChecker_C1SpellChecker_GetSuggestions_System_String_">GetSuggestions(string)</a>
        </td>
        <td class="markdown level1 summary"><p>Gets an array containing suggestions for a misspelled word.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_SpellChecker_C1SpellChecker_GetSuggestions_System_String_System_Int32_" data-uid="C1.Win.SpellChecker.C1SpellChecker.GetSuggestions(System.String,System.Int32)">
          <a class="xref" href="C1.Win.SpellChecker.C1SpellChecker.GetSuggestions.html#C1_Win_SpellChecker_C1SpellChecker_GetSuggestions_System_String_System_Int32_">GetSuggestions(string, int)</a>
        </td>
        <td class="markdown level1 summary"><p>Gets an array containing suggestions for a misspelled word.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_SpellChecker_C1SpellChecker_OnAutoReplace_C1_Win_SpellChecker_AutoReplaceEventArgs_" data-uid="C1.Win.SpellChecker.C1SpellChecker.OnAutoReplace(C1.Win.SpellChecker.AutoReplaceEventArgs)">
          <a class="xref" href="C1.Win.SpellChecker.C1SpellChecker.OnAutoReplace.html#C1_Win_SpellChecker_C1SpellChecker_OnAutoReplace_C1_Win_SpellChecker_AutoReplaceEventArgs_">OnAutoReplace(AutoReplaceEventArgs)</a>
        </td>
        <td class="markdown level1 summary"><p>Raises the <a class="xref" href="C1.Win.SpellChecker.C1SpellChecker.AutoReplace.html">AutoReplace</a> event.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_SpellChecker_C1SpellChecker_OnBadWordFound_C1_Win_SpellChecker_BadWordEventArgs_" data-uid="C1.Win.SpellChecker.C1SpellChecker.OnBadWordFound(C1.Win.SpellChecker.BadWordEventArgs)">
          <a class="xref" href="C1.Win.SpellChecker.C1SpellChecker.OnBadWordFound.html#C1_Win_SpellChecker_C1SpellChecker_OnBadWordFound_C1_Win_SpellChecker_BadWordEventArgs_">OnBadWordFound(BadWordEventArgs)</a>
        </td>
        <td class="markdown level1 summary"><p>Raises the <a class="xref" href="C1.Win.SpellChecker.C1SpellChecker.BadWordFound.html">BadWordFound</a> event.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_SpellChecker_C1SpellChecker_OnContextMenuCreated_C1_Win_SpellChecker_ContextMenuEventArgs_" data-uid="C1.Win.SpellChecker.C1SpellChecker.OnContextMenuCreated(C1.Win.SpellChecker.ContextMenuEventArgs)">
          <a class="xref" href="C1.Win.SpellChecker.C1SpellChecker.OnContextMenuCreated.html#C1_Win_SpellChecker_C1SpellChecker_OnContextMenuCreated_C1_Win_SpellChecker_ContextMenuEventArgs_">OnContextMenuCreated(ContextMenuEventArgs)</a>
        </td>
        <td class="markdown level1 summary"><p>Raises the <a class="xref" href="C1.Win.SpellChecker.C1SpellChecker.ContextMenuCreated.html">ContextMenuCreated</a> event.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_SpellChecker_C1SpellChecker_OnDictionaryChanged_System_EventArgs_" data-uid="C1.Win.SpellChecker.C1SpellChecker.OnDictionaryChanged(System.EventArgs)">
          <a class="xref" href="C1.Win.SpellChecker.C1SpellChecker.OnDictionaryChanged.html#C1_Win_SpellChecker_C1SpellChecker_OnDictionaryChanged_System_EventArgs_">OnDictionaryChanged(EventArgs)</a>
        </td>
        <td class="markdown level1 summary"><p>Raises the <a class="xref" href="C1.Win.SpellChecker.C1SpellChecker.DictionaryChanged.html">DictionaryChanged</a> event.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_SpellChecker_C1SpellChecker_OnShowSuggestions_C1_Win_SpellChecker_SuggestionsEventArgs_" data-uid="C1.Win.SpellChecker.C1SpellChecker.OnShowSuggestions(C1.Win.SpellChecker.SuggestionsEventArgs)">
          <a class="xref" href="C1.Win.SpellChecker.C1SpellChecker.OnShowSuggestions.html#C1_Win_SpellChecker_C1SpellChecker_OnShowSuggestions_C1_Win_SpellChecker_SuggestionsEventArgs_">OnShowSuggestions(SuggestionsEventArgs)</a>
        </td>
        <td class="markdown level1 summary"><p>Raises the <a class="xref" href="C1.Win.SpellChecker.C1SpellChecker.ShowSuggestions.html">ShowSuggestions</a> event.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_SpellChecker_C1SpellChecker_SetActiveSpellChecking_C1_Win_SpellChecker_ISpellCheckableRichEditor_System_Boolean_" data-uid="C1.Win.SpellChecker.C1SpellChecker.SetActiveSpellChecking(C1.Win.SpellChecker.ISpellCheckableRichEditor,System.Boolean)">
          <a class="xref" href="C1.Win.SpellChecker.C1SpellChecker.SetActiveSpellChecking.html#C1_Win_SpellChecker_C1SpellChecker_SetActiveSpellChecking_C1_Win_SpellChecker_ISpellCheckableRichEditor_System_Boolean_">SetActiveSpellChecking(ISpellCheckableRichEditor, bool)</a>
        </td>
        <td class="markdown level1 summary"><p>Sets whether the <a class="xref" href="C1.Win.SpellChecker.C1SpellChecker.html">C1SpellChecker</a> should monitor a given <a class="xref" href="C1.Win.SpellChecker.ISpellCheckableRichEditor.html">ISpellCheckableRichEditor</a>
and highlight spelling mistakes.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_SpellChecker_C1SpellChecker_SetActiveSpellChecking_System_Windows_Forms_Control_System_Object_System_Boolean_" data-uid="C1.Win.SpellChecker.C1SpellChecker.SetActiveSpellChecking(System.Windows.Forms.Control,System.Object,System.Boolean)">
          <a class="xref" href="C1.Win.SpellChecker.C1SpellChecker.SetActiveSpellChecking.html#C1_Win_SpellChecker_C1SpellChecker_SetActiveSpellChecking_System_Windows_Forms_Control_System_Object_System_Boolean_">SetActiveSpellChecking(Control, object, bool)</a>
        </td>
        <td class="markdown level1 summary"><p>Sets whether the <a class="xref" href="C1.Win.SpellChecker.C1SpellChecker.html">C1SpellChecker</a> should highlight spelling mistakes in a <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.forms.webbrowser">WebBrowser</a> control.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_SpellChecker_C1SpellChecker_SetActiveSpellChecking_System_Windows_Forms_TextBoxBase_System_Boolean_" data-uid="C1.Win.SpellChecker.C1SpellChecker.SetActiveSpellChecking(System.Windows.Forms.TextBoxBase,System.Boolean)">
          <a class="xref" href="C1.Win.SpellChecker.C1SpellChecker.SetActiveSpellChecking.html#C1_Win_SpellChecker_C1SpellChecker_SetActiveSpellChecking_System_Windows_Forms_TextBoxBase_System_Boolean_">SetActiveSpellChecking(TextBoxBase, bool)</a>
        </td>
        <td class="markdown level1 summary"><p>Sets whether the <a class="xref" href="C1.Win.SpellChecker.C1SpellChecker.html">C1SpellChecker</a> should highlight spelling mistakes
as the user types on a given <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.forms.textboxbase">TextBoxBase</a>.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_SpellChecker_C1SpellChecker_SetActiveSpellChecking_System_Windows_Forms_WebBrowser_System_Boolean_" data-uid="C1.Win.SpellChecker.C1SpellChecker.SetActiveSpellChecking(System.Windows.Forms.WebBrowser,System.Boolean)">
          <a class="xref" href="C1.Win.SpellChecker.C1SpellChecker.SetActiveSpellChecking.html#C1_Win_SpellChecker_C1SpellChecker_SetActiveSpellChecking_System_Windows_Forms_WebBrowser_System_Boolean_">SetActiveSpellChecking(WebBrowser, bool)</a>
        </td>
        <td class="markdown level1 summary"><p>Sets whether the <a class="xref" href="C1.Win.SpellChecker.C1SpellChecker.html">C1SpellChecker</a> should highlight spelling mistakes in a <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.forms.webbrowser">WebBrowser</a> control.</p>
</td>
      </tr>
    </tbody>
  </table>
  <h3 id="events">Events
</h3>
  <table class="table table-bordered table-condensed">
    <thead>
      <tr>
        <th>Name</th>
        <th>Description</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td id="C1_Win_SpellChecker_C1SpellChecker_AutoReplace" data-uid="C1.Win.SpellChecker.C1SpellChecker.AutoReplace">
          <a class="xref" href="C1.Win.SpellChecker.C1SpellChecker.AutoReplace.html">AutoReplace</a>
        </td>
        <td class="markdown level1 summary"><p>Occurs before the <a class="xref" href="C1.Win.SpellChecker.C1SpellChecker.html">C1SpellChecker</a> makes an automatic replacement
in the control's text.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_SpellChecker_C1SpellChecker_BadWordFound" data-uid="C1.Win.SpellChecker.C1SpellChecker.BadWordFound">
          <a class="xref" href="C1.Win.SpellChecker.C1SpellChecker.BadWordFound.html">BadWordFound</a>
        </td>
        <td class="markdown level1 summary"><p>Occurs when a spelling error is found by the <a class="xref" href="C1.Win.SpellChecker.C1SpellChecker.html">C1SpellChecker</a>.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_SpellChecker_C1SpellChecker_ContextMenuCreated" data-uid="C1.Win.SpellChecker.C1SpellChecker.ContextMenuCreated">
          <a class="xref" href="C1.Win.SpellChecker.C1SpellChecker.ContextMenuCreated.html">ContextMenuCreated</a>
        </td>
        <td class="markdown level1 summary"><p>Occurs when a context menu is created containing the spelling suggestions and commands.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_SpellChecker_C1SpellChecker_DictionaryChanged" data-uid="C1.Win.SpellChecker.C1SpellChecker.DictionaryChanged">
          <a class="xref" href="C1.Win.SpellChecker.C1SpellChecker.DictionaryChanged.html">DictionaryChanged</a>
        </td>
        <td class="markdown level1 summary"><p>Occurs when any of the spell dictionaries changes in any way.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_SpellChecker_C1SpellChecker_ShowSuggestions" data-uid="C1.Win.SpellChecker.C1SpellChecker.ShowSuggestions">
          <a class="xref" href="C1.Win.SpellChecker.C1SpellChecker.ShowSuggestions.html">ShowSuggestions</a>
        </td>
        <td class="markdown level1 summary"><p>Occurs when suggestions is about to show in the spell dialog or in the spell context menu.</p>
</td>
      </tr>
    </tbody>
  </table>

</div>
