# C1.Win.C1Editor.C1Editor

## Content

<div class="doc-site-dotnet-api-container">



  <h1 id="C1_Win_C1Editor_C1Editor" data-uid="C1.Win.C1Editor.C1Editor" class="text-break">C1Editor Class
</h1>
  <div class="markdown level0 summary"><p>Represents the C1Editor control.</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"><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.forms.control">Control</a></div>
    <div class="level4"><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.forms.scrollablecontrol">ScrollableControl</a></div>
    <div class="level5"><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.forms.containercontrol">ContainerControl</a></div>
    <div class="level6"><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.forms.usercontrol">UserControl</a></div>
    <div class="level7"><span class="xref">C1Editor</span></div>
  </div>
  <div class="implements">
    <h5>Implements</h5>
    <div><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.forms.idroptarget">IDropTarget</a></div>
    <div><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.componentmodel.isynchronizeinvoke">ISynchronizeInvoke</a></div>
    <div><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.forms.iwin32window">IWin32Window</a></div>
    <div><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.forms.ibindablecomponent">IBindableComponent</a></div>
    <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.windows.forms.icontainercontrol">IContainerControl</a></div>
    <div><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.componentmodel.isupportinitialize">ISupportInitialize</a></div>
    <div><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.componentmodel.inotifypropertychanged">INotifyPropertyChanged</a></div>
  </div>
  <h6><strong>Namespace</strong>: <a class="xref" href="C1.Win.C1Editor.html">C1.Win.C1Editor</a></h6>
  <h6><strong>Assembly</strong>: C1.Win.C1Editor.4.8.dll</h6>
  <h5 id="C1_Win_C1Editor_C1Editor_syntax">Syntax</h5>
  <div class="codewrapper">
    <pre><code class="lang-csharp hljs">[ToolboxBitmap(typeof(C1Editor), &quot;C1Editor.png&quot;)]
public class C1Editor : UserControl, IDropTarget, ISynchronizeInvoke, IWin32Window, IBindableComponent, IComponent, IDisposable, IContainerControl, ISupportInitialize, INotifyPropertyChanged</code></pre>
  </div>
  <div class="codewrapper">
    <pre><code class="lang-vbnet hljs">&lt;ToolboxBitmap(GetType(C1Editor), &quot;C1Editor.png&quot;)&gt;
Public Class C1Editor
    Inherits UserControl
    Implements IDropTarget, ISynchronizeInvoke, IWin32Window, IBindableComponent, IComponent, IDisposable, IContainerControl, ISupportInitialize, INotifyPropertyChanged</code></pre>
  </div>
  <h5 id="C1_Win_C1Editor_C1Editor_remarks"><strong>Remarks</strong></h5>
  <div class="markdown level0 remarks"><p> The control has a <a class="xref" href="C1.Win.C1Editor.C1Editor.Document.html#C1_Win_C1Editor_C1Editor_Document">Document</a> property. 
It is possible to assign an existing document to this property and it will be 
displayed in the control.
<p>The control and the document are bound.
If the document is edited within the control,
the underlying XmlDocument changes to match the edited document.
If the XmlDocument changes (in code), then the changes appear in the editor.</p>
</div>
  <h5 id="C1_Win_C1Editor_C1Editor_examples"><strong>Examples</strong></h5>
  <p>This sample shows how to load an XHTML string into the editor and
append a stylesheet using functions of XmlDocument.</p>
<pre><code class="lang-csharp">c1Editor1.LoadXml(xhtml);
XmlElement style = c1Editor1.Document.CreateElement("style");
style.InnerXml = "strong {text-decoration:underline}";
foreach (XmlNode node in c1Editor1.Document.DocumentElement)
{
    if (node.Name == "head")
    {
        node.AppendChild(style);
        break;
    }
}</code></pre>

  <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_C1Editor_C1Editor__ctor" data-uid="C1.Win.C1Editor.C1Editor.#ctor">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.-ctor.html#C1_Win_C1Editor_C1Editor__ctor">C1Editor()</a>
        </td>
        <td class="markdown level1 summary"><p>Initializes a new instance of the <a class="xref" href="C1.Win.C1Editor.C1Editor.html">C1Editor</a> class.</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_C1Editor_C1Editor_AcceptsTab" data-uid="C1.Win.C1Editor.C1Editor.AcceptsTab">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.AcceptsTab.html#C1_Win_C1Editor_C1Editor_AcceptsTab">AcceptsTab</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a value indicating whether pressing the TAB key in a control types a TAB character in the editor instead of moving the focus to the next control in the tab order.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_AllowAdHocTags" data-uid="C1.Win.C1Editor.C1Editor.AllowAdHocTags">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.AllowAdHocTags.html#C1_Win_C1Editor_C1Editor_AllowAdHocTags">AllowAdHocTags</a>
        </td>
        <td class="markdown level1 summary"><p>Indicates whether the editor turns validation on or off.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_AllowDrop" data-uid="C1.Win.C1Editor.C1Editor.AllowDrop">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.AllowDrop.html#C1_Win_C1Editor_C1Editor_AllowDrop">AllowDrop</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a value indicating whether the editor can accept data that the user drags onto it.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_BaseUri" data-uid="C1.Win.C1Editor.C1Editor.BaseUri">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.BaseUri.html#C1_Win_C1Editor_C1Editor_BaseUri">BaseUri</a>
        </td>
        <td class="markdown level1 summary"><p>Gets the base Uri of the current document.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_BorderStyle" data-uid="C1.Win.C1Editor.C1Editor.BorderStyle">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.BorderStyle.html#C1_Win_C1Editor_C1Editor_BorderStyle">BorderStyle</a>
        </td>
        <td class="markdown level1 summary"><p>Indicates whether the editor should have a border.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_CanCopy" data-uid="C1.Win.C1Editor.C1Editor.CanCopy">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.CanCopy.html#C1_Win_C1Editor_C1Editor_CanCopy">CanCopy</a>
        </td>
        <td class="markdown level1 summary"><p>Gets a value indicating whether the copy command is supported on the current selection.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_CanCut" data-uid="C1.Win.C1Editor.C1Editor.CanCut">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.CanCut.html#C1_Win_C1Editor_C1Editor_CanCut">CanCut</a>
        </td>
        <td class="markdown level1 summary"><p>Gets a value indicating whether the cut command is supported on the current selection.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_CanPaste" data-uid="C1.Win.C1Editor.C1Editor.CanPaste">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.CanPaste.html#C1_Win_C1Editor_C1Editor_CanPaste">CanPaste</a>
        </td>
        <td class="markdown level1 summary"><p>Gets a value indicating whether the paste command is supported on the current selection.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_CanPasteAsText" data-uid="C1.Win.C1Editor.C1Editor.CanPasteAsText">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.CanPasteAsText.html#C1_Win_C1Editor_C1Editor_CanPasteAsText">CanPasteAsText</a>
        </td>
        <td class="markdown level1 summary"><p>Determines whether you can paste information from the Clipboard in text format.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_ContextMenuStrip" data-uid="C1.Win.C1Editor.C1Editor.ContextMenuStrip">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.ContextMenuStrip.html#C1_Win_C1Editor_C1Editor_ContextMenuStrip">ContextMenuStrip</a>
        </td>
        <td class="markdown level1 summary"><p>Overrides the <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.forms.control.contextmenustrip">ContextMenuStrip</a> property.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_CustomDialogs" data-uid="C1.Win.C1Editor.C1Editor.CustomDialogs">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.CustomDialogs.html#C1_Win_C1Editor_C1Editor_CustomDialogs">CustomDialogs</a>
        </td>
        <td class="markdown level1 summary"><p>Allows user-defined dialog boxes such as
Find/Replace, Format, Insert table, and others to be used.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_DefaultMinimumSize" data-uid="C1.Win.C1Editor.C1Editor.DefaultMinimumSize">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.DefaultMinimumSize.html#C1_Win_C1Editor_C1Editor_DefaultMinimumSize">DefaultMinimumSize</a>
        </td>
        <td class="markdown level1 summary"><p>Overrides <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.forms.control.defaultminimumsize">DefaultMinimumSize</a>.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_DefaultTitle" data-uid="C1.Win.C1Editor.C1Editor.DefaultTitle">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.DefaultTitle.html#C1_Win_C1Editor_C1Editor_DefaultTitle">DefaultTitle</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a string (followed by a number) used for the 'title' attribute of the loaded document if that attribute is not specified.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_Document" data-uid="C1.Win.C1Editor.C1Editor.Document">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.Document.html#C1_Win_C1Editor_C1Editor_Document">Document</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the XML document bound to the <a class="xref" href="C1.Win.C1Editor.C1Editor.html">C1Editor</a>.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_EnableComments" data-uid="C1.Win.C1Editor.C1Editor.EnableComments">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.EnableComments.html#C1_Win_C1Editor_C1Editor_EnableComments">EnableComments</a>
        </td>
        <td class="markdown level1 summary"><p>Indicates whether the editor turns Comments feature on or off.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_Focused" data-uid="C1.Win.C1Editor.C1Editor.Focused">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.Focused.html#C1_Win_C1Editor_C1Editor_Focused">Focused</a>
        </td>
        <td class="markdown level1 summary"><p>Gets a <b>Boolean</b> value indicating  whether the control has input focus.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_History" data-uid="C1.Win.C1Editor.C1Editor.History">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.History.html#C1_Win_C1Editor_C1Editor_History">History</a>
        </td>
        <td class="markdown level1 summary"><p>Returns XML document for editing</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_IsDirty" data-uid="C1.Win.C1Editor.C1Editor.IsDirty">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.IsDirty.html#C1_Win_C1Editor_C1Editor_IsDirty">IsDirty</a>
        </td>
        <td class="markdown level1 summary"><p>Gets a Boolean value that indicates whether the document has been modified since it was last saved.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_KeyboardShortcutsEnabled" data-uid="C1.Win.C1Editor.C1Editor.KeyboardShortcutsEnabled">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.KeyboardShortcutsEnabled.html#C1_Win_C1Editor_C1Editor_KeyboardShortcutsEnabled">KeyboardShortcutsEnabled</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a value indicating whether the editor processes shortcuts for basic editing operations</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_MaxLength" data-uid="C1.Win.C1Editor.C1Editor.MaxLength">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.MaxLength.html#C1_Win_C1Editor_C1Editor_MaxLength">MaxLength</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the maximum number of characters the user can type or paste into the editor control.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_Mode" data-uid="C1.Win.C1Editor.C1Editor.Mode">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.Mode.html#C1_Win_C1Editor_C1Editor_Mode">Mode</a>
        </td>
        <td class="markdown level1 summary"><p>Defines current editor view and behavior.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_ReadOnly" data-uid="C1.Win.C1Editor.C1Editor.ReadOnly">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.ReadOnly.html#C1_Win_C1Editor_C1Editor_ReadOnly">ReadOnly</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a value indicating whether content in the editor is read-only.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_RenderEngine" data-uid="C1.Win.C1Editor.C1Editor.RenderEngine">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.RenderEngine.html#C1_Win_C1Editor_C1Editor_RenderEngine">RenderEngine</a>
        </td>
        <td class="markdown level1 summary"><p>Specifies the IE rendering engine.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_SelectedText" data-uid="C1.Win.C1Editor.C1Editor.SelectedText">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.SelectedText.html#C1_Win_C1Editor_C1Editor_SelectedText">SelectedText</a>
        </td>
        <td class="markdown level1 summary"><p>Gets the text currently selected in the <a class="xref" href="C1.Win.C1Editor.C1Editor.html">C1Editor</a>.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_Selection" data-uid="C1.Win.C1Editor.C1Editor.Selection">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.Selection.html#C1_Win_C1Editor_C1Editor_Selection">Selection</a>
        </td>
        <td class="markdown level1 summary"><p>Gets the current selection in the <a class="xref" href="C1.Win.C1Editor.C1Editor.html">C1Editor</a>.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_SelectionLength" data-uid="C1.Win.C1Editor.C1Editor.SelectionLength">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.SelectionLength.html#C1_Win_C1Editor_C1Editor_SelectionLength">SelectionLength</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the number of selected characters in the <a class="xref" href="C1.Win.C1Editor.C1Editor.html">C1Editor</a>.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_SelectionStart" data-uid="C1.Win.C1Editor.C1Editor.SelectionStart">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.SelectionStart.html#C1_Win_C1Editor_C1Editor_SelectionStart">SelectionStart</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the index of the first selected character in the <a class="xref" href="C1.Win.C1Editor.C1Editor.html">C1Editor</a>.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_SetFocusAfterLoading" data-uid="C1.Win.C1Editor.C1Editor.SetFocusAfterLoading">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.SetFocusAfterLoading.html#C1_Win_C1Editor_C1Editor_SetFocusAfterLoading">SetFocusAfterLoading</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a value indicating whether focus will be set to a control after the document is loaded.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_Text" data-uid="C1.Win.C1Editor.C1Editor.Text">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.Text.html#C1_Win_C1Editor_C1Editor_Text">Text</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the current text in the editor.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_WebBrowser" data-uid="C1.Win.C1Editor.C1Editor.WebBrowser">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.WebBrowser.html#C1_Win_C1Editor_C1Editor_WebBrowser">WebBrowser</a>
        </td>
        <td class="markdown level1 summary"><p>Returns the ActiveX WebBrowser object for current <a class="xref" href="C1.Win.C1Editor.C1Editor.Mode.html#C1_Win_C1Editor_C1Editor_Mode">Mode</a>.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_WordWrap" data-uid="C1.Win.C1Editor.C1Editor.WordWrap">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.WordWrap.html#C1_Win_C1Editor_C1Editor_WordWrap">WordWrap</a>
        </td>
        <td class="markdown level1 summary"><p>Indicates whether the editor automatically wraps words to the beginning of the next line when necessary in the Source mode.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_Xml" data-uid="C1.Win.C1Editor.C1Editor.Xml">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.Xml.html#C1_Win_C1Editor_C1Editor_Xml">Xml</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the current XML content of the editor.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_XmlExtensions" data-uid="C1.Win.C1Editor.C1Editor.XmlExtensions">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.XmlExtensions.html#C1_Win_C1Editor_C1Editor_XmlExtensions">XmlExtensions</a>
        </td>
        <td class="markdown level1 summary"><p>Contains information about custom elements and attributes that extend the standard XHTML DTD.</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_C1Editor_C1Editor_BeginInit" data-uid="C1.Win.C1Editor.C1Editor.BeginInit">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.BeginInit.html#C1_Win_C1Editor_C1Editor_BeginInit">BeginInit()</a>
        </td>
        <td class="markdown level1 summary"><p>Begins the initialization of a <a class="xref" href="C1.Win.C1Editor.C1Editor.html">C1Editor</a> control that is used on a form or used by another component.
The initialization occurs at run time.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_BeginTransaction_System_String_" data-uid="C1.Win.C1Editor.C1Editor.BeginTransaction(System.String)">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.BeginTransaction.html#C1_Win_C1Editor_C1Editor_BeginTransaction_System_String_">BeginTransaction(string)</a>
        </td>
        <td class="markdown level1 summary"><p>Begins a transaction.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_CanRedo" data-uid="C1.Win.C1Editor.C1Editor.CanRedo">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.CanRedo.html#C1_Win_C1Editor_C1Editor_CanRedo">CanRedo()</a>
        </td>
        <td class="markdown level1 summary"><p>Returns a value that indicates whether the most recent undo action can be redone.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_CanShowDialog_C1_Win_C1Editor_DialogType_" data-uid="C1.Win.C1Editor.C1Editor.CanShowDialog(C1.Win.C1Editor.DialogType)">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.CanShowDialog.html#C1_Win_C1Editor_C1Editor_CanShowDialog_C1_Win_C1Editor_DialogType_">CanShowDialog(DialogType)</a>
        </td>
        <td class="markdown level1 summary"><p>Returns a Boolean value indicating whether or not the specified dialog can be shown.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_CanUndo" data-uid="C1.Win.C1Editor.C1Editor.CanUndo">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.CanUndo.html#C1_Win_C1Editor_C1Editor_CanUndo">CanUndo()</a>
        </td>
        <td class="markdown level1 summary"><p>Returns a value that indicates whether the most recent action can be undone.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_CommitTransaction" data-uid="C1.Win.C1Editor.C1Editor.CommitTransaction">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.CommitTransaction.html#C1_Win_C1Editor_C1Editor_CommitTransaction">CommitTransaction()</a>
        </td>
        <td class="markdown level1 summary"><p>Commits the started transaction.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_Copy" data-uid="C1.Win.C1Editor.C1Editor.Copy">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.Copy.html#C1_Win_C1Editor_C1Editor_Copy">Copy()</a>
        </td>
        <td class="markdown level1 summary"><p>Copies the current selection to the Clipboard.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_CreateRange" data-uid="C1.Win.C1Editor.C1Editor.CreateRange">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.CreateRange.html#C1_Win_C1Editor_C1Editor_CreateRange">CreateRange()</a>
        </td>
        <td class="markdown level1 summary"><p>Creates a text range.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_CreateRange_C1_Win_C1Editor_C1TextPointer_C1_Win_C1Editor_C1TextPointer_" data-uid="C1.Win.C1Editor.C1Editor.CreateRange(C1.Win.C1Editor.C1TextPointer,C1.Win.C1Editor.C1TextPointer)">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.CreateRange.html#C1_Win_C1Editor_C1Editor_CreateRange_C1_Win_C1Editor_C1TextPointer_C1_Win_C1Editor_C1TextPointer_">CreateRange(C1TextPointer, C1TextPointer)</a>
        </td>
        <td class="markdown level1 summary"><p>Creates a range between the specified start and end <a class="xref" href="C1.Win.C1Editor.C1TextPointer.html">C1TextPointer</a>.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_CreateRange_System_Int32_System_Int32_" data-uid="C1.Win.C1Editor.C1Editor.CreateRange(System.Int32,System.Int32)">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.CreateRange.html#C1_Win_C1Editor_C1Editor_CreateRange_System_Int32_System_Int32_">CreateRange(int, int)</a>
        </td>
        <td class="markdown level1 summary"><p>Creates a range that begins with the specified starting character and continues through the specified length of characters.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_CreateRange_System_Xml_XmlNode_" data-uid="C1.Win.C1Editor.C1Editor.CreateRange(System.Xml.XmlNode)">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.CreateRange.html#C1_Win_C1Editor_C1Editor_CreateRange_System_Xml_XmlNode_">CreateRange(XmlNode)</a>
        </td>
        <td class="markdown level1 summary"><p>Creates a range on the specified <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.xml.xmlnode">XmlNode</a>.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_Cut" data-uid="C1.Win.C1Editor.C1Editor.Cut">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.Cut.html#C1_Win_C1Editor_C1Editor_Cut">Cut()</a>
        </td>
        <td class="markdown level1 summary"><p>Moves the current selection to the Clipboard.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_Dispose_System_Boolean_" data-uid="C1.Win.C1Editor.C1Editor.Dispose(System.Boolean)">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.Dispose.html#C1_Win_C1Editor_C1Editor_Dispose_System_Boolean_">Dispose(bool)</a>
        </td>
        <td class="markdown level1 summary"><p>Releases all the resources that the editor owns.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_EndInit" data-uid="C1.Win.C1Editor.C1Editor.EndInit">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.EndInit.html#C1_Win_C1Editor_C1Editor_EndInit">EndInit()</a>
        </td>
        <td class="markdown level1 summary"><p>Ends the initialization of a <a class="xref" href="C1.Win.C1Editor.C1Editor.html">C1Editor</a> that is used on a form or used by another component.
The initialization occurs at run time.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_FixSource" data-uid="C1.Win.C1Editor.C1Editor.FixSource">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.FixSource.html#C1_Win_C1Editor_C1Editor_FixSource">FixSource()</a>
        </td>
        <td class="markdown level1 summary"><p>Fixes the document in source mode, corrects errors, makes it valid XHTML.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_Focus" data-uid="C1.Win.C1Editor.C1Editor.Focus">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.Focus.html#C1_Win_C1Editor_C1Editor_Focus">Focus()</a>
        </td>
        <td class="markdown level1 summary"><p>Sets input focus to the control.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_GetActiveXInstance" data-uid="C1.Win.C1Editor.C1Editor.GetActiveXInstance">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.GetActiveXInstance.html#C1_Win_C1Editor_C1Editor_GetActiveXInstance">GetActiveXInstance()</a>
        </td>
        <td class="markdown level1 summary"><p>Gets the underlying ActiveX WebBrowser control.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_HasOpenTransaction" data-uid="C1.Win.C1Editor.C1Editor.HasOpenTransaction">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.HasOpenTransaction.html#C1_Win_C1Editor_C1Editor_HasOpenTransaction">HasOpenTransaction()</a>
        </td>
        <td class="markdown level1 summary"><p>Gets a value indicating whether the editor has open transaction.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_LoadDesignCSS_System_IO_Stream_" data-uid="C1.Win.C1Editor.C1Editor.LoadDesignCSS(System.IO.Stream)">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.LoadDesignCSS.html#C1_Win_C1Editor_C1Editor_LoadDesignCSS_System_IO_Stream_">LoadDesignCSS(Stream)</a>
        </td>
        <td class="markdown level1 summary"><p>Loads a design CSS from a given stream.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_LoadDesignCSS_System_String_" data-uid="C1.Win.C1Editor.C1Editor.LoadDesignCSS(System.String)">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.LoadDesignCSS.html#C1_Win_C1Editor_C1Editor_LoadDesignCSS_System_String_">LoadDesignCSS(string)</a>
        </td>
        <td class="markdown level1 summary"><p>Loads a design CSS from a given file.
The base URL is inferred from the file location.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_LoadPreviewCSS_System_IO_Stream_" data-uid="C1.Win.C1Editor.C1Editor.LoadPreviewCSS(System.IO.Stream)">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.LoadPreviewCSS.html#C1_Win_C1Editor_C1Editor_LoadPreviewCSS_System_IO_Stream_">LoadPreviewCSS(Stream)</a>
        </td>
        <td class="markdown level1 summary"><p>Loads the preview CSS from a given stream.
The base URL is not given; it assumes a simple, self-contained CSS.
It also assumes the stream is encoded in UTF8.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_LoadPreviewCSS_System_String_" data-uid="C1.Win.C1Editor.C1Editor.LoadPreviewCSS(System.String)">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.LoadPreviewCSS.html#C1_Win_C1Editor_C1Editor_LoadPreviewCSS_System_String_">LoadPreviewCSS(string)</a>
        </td>
        <td class="markdown level1 summary"><p>Loads the preview CSS from a given file.
<remarks>
Base URL is inferred from the file location.
</remarks></p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_LoadRtf_System_IO_Stream_System_Uri_" data-uid="C1.Win.C1Editor.C1Editor.LoadRtf(System.IO.Stream,System.Uri)">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.LoadRtf.html#C1_Win_C1Editor_C1Editor_LoadRtf_System_IO_Stream_System_Uri_">LoadRtf(Stream, Uri)</a>
        </td>
        <td class="markdown level1 summary"><p>Loads the document from the specified stream in RTF format.</p>
<param name="stream">The <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.io.stream">Stream</a> containing the RTF document to load.
<param name="baseUri"> Path to resolve pictures, video, links, and so on.
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_LoadRtf_System_String_" data-uid="C1.Win.C1Editor.C1Editor.LoadRtf(System.String)">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.LoadRtf.html#C1_Win_C1Editor_C1Editor_LoadRtf_System_String_">LoadRtf(string)</a>
        </td>
        <td class="markdown level1 summary"><p>Loads the document from the specified file in RTF format.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_LoadXml_System_IO_Stream_System_Uri_" data-uid="C1.Win.C1Editor.C1Editor.LoadXml(System.IO.Stream,System.Uri)">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.LoadXml.html#C1_Win_C1Editor_C1Editor_LoadXml_System_IO_Stream_System_Uri_">LoadXml(Stream, Uri)</a>
        </td>
        <td class="markdown level1 summary"><p>Loads the document from the specified stream in XML format.</p>
<param name="stream">The <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.io.stream">Stream</a> containing the XML document to load.
<param name="baseUri"> Path to resolve pictures, video, links, and so on.
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_LoadXml_System_String_" data-uid="C1.Win.C1Editor.C1Editor.LoadXml(System.String)">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.LoadXml.html#C1_Win_C1Editor_C1Editor_LoadXml_System_String_">LoadXml(string)</a>
        </td>
        <td class="markdown level1 summary"><p>Loads the document from the specified file in XML format.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_LoadXml_System_String_System_Uri_" data-uid="C1.Win.C1Editor.C1Editor.LoadXml(System.String,System.Uri)">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.LoadXml.html#C1_Win_C1Editor_C1Editor_LoadXml_System_String_System_Uri_">LoadXml(string, Uri)</a>
        </td>
        <td class="markdown level1 summary"><p>Loads the document from an XML string.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_OnAfterSave_System_EventArgs_" data-uid="C1.Win.C1Editor.C1Editor.OnAfterSave(System.EventArgs)">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.OnAfterSave.html#C1_Win_C1Editor_C1Editor_OnAfterSave_System_EventArgs_">OnAfterSave(EventArgs)</a>
        </td>
        <td class="markdown level1 summary"><p>Raises <a class="xref" href="C1.Win.C1Editor.C1Editor.AfterSave.html">AfterSave</a> event.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_OnBackColorChanged_System_EventArgs_" data-uid="C1.Win.C1Editor.C1Editor.OnBackColorChanged(System.EventArgs)">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.OnBackColorChanged.html#C1_Win_C1Editor_C1Editor_OnBackColorChanged_System_EventArgs_">OnBackColorChanged(EventArgs)</a>
        </td>
        <td class="markdown level1 summary"></td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_OnBeforeModeChange_C1_Win_C1Editor_BeforeModeChangeEventArgs_" data-uid="C1.Win.C1Editor.C1Editor.OnBeforeModeChange(C1.Win.C1Editor.BeforeModeChangeEventArgs)">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.OnBeforeModeChange.html#C1_Win_C1Editor_C1Editor_OnBeforeModeChange_C1_Win_C1Editor_BeforeModeChangeEventArgs_">OnBeforeModeChange(BeforeModeChangeEventArgs)</a>
        </td>
        <td class="markdown level1 summary"><p>Raises <a class="xref" href="C1.Win.C1Editor.C1Editor.SelectionChanged.html">SelectionChanged</a> event.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_OnBeforeSave_System_ComponentModel_CancelEventArgs_" data-uid="C1.Win.C1Editor.C1Editor.OnBeforeSave(System.ComponentModel.CancelEventArgs)">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.OnBeforeSave.html#C1_Win_C1Editor_C1Editor_OnBeforeSave_System_ComponentModel_CancelEventArgs_">OnBeforeSave(CancelEventArgs)</a>
        </td>
        <td class="markdown level1 summary"><p>Raises <a class="xref" href="C1.Win.C1Editor.C1Editor.BeforeSave.html">BeforeSave</a> event.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_OnDocumentChanged_System_EventArgs_" data-uid="C1.Win.C1Editor.C1Editor.OnDocumentChanged(System.EventArgs)">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.OnDocumentChanged.html#C1_Win_C1Editor_C1Editor_OnDocumentChanged_System_EventArgs_">OnDocumentChanged(EventArgs)</a>
        </td>
        <td class="markdown level1 summary"><p>Raises <a class="xref" href="C1.Win.C1Editor.C1Editor.DocumentChanged.html">DocumentChanged</a> event.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_OnEnter_System_EventArgs_" data-uid="C1.Win.C1Editor.C1Editor.OnEnter(System.EventArgs)">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.OnEnter.html#C1_Win_C1Editor_C1Editor_OnEnter_System_EventArgs_">OnEnter(EventArgs)</a>
        </td>
        <td class="markdown level1 summary"><p>Sends focus to active browser when entering the editor.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_OnFontChanged_System_EventArgs_" data-uid="C1.Win.C1Editor.C1Editor.OnFontChanged(System.EventArgs)">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.OnFontChanged.html#C1_Win_C1Editor_C1Editor_OnFontChanged_System_EventArgs_">OnFontChanged(EventArgs)</a>
        </td>
        <td class="markdown level1 summary"></td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_OnForeColorChanged_System_EventArgs_" data-uid="C1.Win.C1Editor.C1Editor.OnForeColorChanged(System.EventArgs)">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.OnForeColorChanged.html#C1_Win_C1Editor_C1Editor_OnForeColorChanged_System_EventArgs_">OnForeColorChanged(EventArgs)</a>
        </td>
        <td class="markdown level1 summary"></td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_OnHtmlEvent_C1_Win_C1Editor_HtmlEventEventArgs_" data-uid="C1.Win.C1Editor.C1Editor.OnHtmlEvent(C1.Win.C1Editor.HtmlEventEventArgs)">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.OnHtmlEvent.html#C1_Win_C1Editor_C1Editor_OnHtmlEvent_C1_Win_C1Editor_HtmlEventEventArgs_">OnHtmlEvent(HtmlEventEventArgs)</a>
        </td>
        <td class="markdown level1 summary"><p>Raises <a class="xref" href="C1.Win.C1Editor.C1Editor.HtmlEvent.html">HtmlEvent</a> event.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_OnLoad_System_EventArgs_" data-uid="C1.Win.C1Editor.C1Editor.OnLoad(System.EventArgs)">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.OnLoad.html#C1_Win_C1Editor_C1Editor_OnLoad_System_EventArgs_">OnLoad(EventArgs)</a>
        </td>
        <td class="markdown level1 summary"></td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_OnModeChanged_System_EventArgs_" data-uid="C1.Win.C1Editor.C1Editor.OnModeChanged(System.EventArgs)">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.OnModeChanged.html#C1_Win_C1Editor_C1Editor_OnModeChanged_System_EventArgs_">OnModeChanged(EventArgs)</a>
        </td>
        <td class="markdown level1 summary"><p>Raises the <a class="xref" href="C1.Win.C1Editor.C1Editor.ModeChanged.html">ModeChanged</a> event.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_OnSelectionChanged_System_EventArgs_" data-uid="C1.Win.C1Editor.C1Editor.OnSelectionChanged(System.EventArgs)">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.OnSelectionChanged.html#C1_Win_C1Editor_C1Editor_OnSelectionChanged_System_EventArgs_">OnSelectionChanged(EventArgs)</a>
        </td>
        <td class="markdown level1 summary"><p>Raises <a class="xref" href="C1.Win.C1Editor.C1Editor.SelectionChanged.html">SelectionChanged</a> event.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_Paste" data-uid="C1.Win.C1Editor.C1Editor.Paste">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.Paste.html#C1_Win_C1Editor_C1Editor_Paste">Paste()</a>
        </td>
        <td class="markdown level1 summary"><p>Replaces the current selection in the editor with the contents of the Clipboard.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_PasteAsText" data-uid="C1.Win.C1Editor.C1Editor.PasteAsText">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.PasteAsText.html#C1_Win_C1Editor_C1Editor_PasteAsText">PasteAsText()</a>
        </td>
        <td class="markdown level1 summary"><p>Pastes the contents of the Clipboard into the editor using text format.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_PasteEmbeddedImages" data-uid="C1.Win.C1Editor.C1Editor.PasteEmbeddedImages">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.PasteEmbeddedImages.html#C1_Win_C1Editor_C1Editor_PasteEmbeddedImages">PasteEmbeddedImages()</a>
        </td>
        <td class="markdown level1 summary"><p>Pastes the contents of an image in the Clipboard into the editor.
If no image is present, behaves as Paste.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_Print" data-uid="C1.Win.C1Editor.C1Editor.Print">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.Print.html#C1_Win_C1Editor_C1Editor_Print">Print()</a>
        </td>
        <td class="markdown level1 summary"><p>Prints the current document.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_Print_System_Boolean_" data-uid="C1.Win.C1Editor.C1Editor.Print(System.Boolean)">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.Print.html#C1_Win_C1Editor_C1Editor_Print_System_Boolean_">Print(bool)</a>
        </td>
        <td class="markdown level1 summary"><p>Prints the current document.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_Print_System_Boolean_System_String_" data-uid="C1.Win.C1Editor.C1Editor.Print(System.Boolean,System.String)">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.Print.html#C1_Win_C1Editor_C1Editor_Print_System_Boolean_System_String_">Print(bool, string)</a>
        </td>
        <td class="markdown level1 summary"><p>
Prints the current document.
 </p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_PrintPreview" data-uid="C1.Win.C1Editor.C1Editor.PrintPreview">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.PrintPreview.html#C1_Win_C1Editor_C1Editor_PrintPreview">PrintPreview()</a>
        </td>
        <td class="markdown level1 summary"><p>Shows a print preview dialog.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_PrintPreview_System_String_" data-uid="C1.Win.C1Editor.C1Editor.PrintPreview(System.String)">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.PrintPreview.html#C1_Win_C1Editor_C1Editor_PrintPreview_System_String_">PrintPreview(string)</a>
        </td>
        <td class="markdown level1 summary"><p>
Shows a print preview dialog.
 Uses the specified print template.
 See more details about print templates at
 http://msdn.microsoft.com/en-us/library/aa753279(VS.85).aspx
 </p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_Redo" data-uid="C1.Win.C1Editor.C1Editor.Redo">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.Redo.html#C1_Win_C1Editor_C1Editor_Redo">Redo()</a>
        </td>
        <td class="markdown level1 summary"><p>Performs Redo action in the current editor mode (design or source).</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_RollbackTransaction" data-uid="C1.Win.C1Editor.C1Editor.RollbackTransaction">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.RollbackTransaction.html#C1_Win_C1Editor_C1Editor_RollbackTransaction">RollbackTransaction()</a>
        </td>
        <td class="markdown level1 summary"><p>Rolls back the transaction.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_SaveRtf_System_IO_Stream_" data-uid="C1.Win.C1Editor.C1Editor.SaveRtf(System.IO.Stream)">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.SaveRtf.html#C1_Win_C1Editor_C1Editor_SaveRtf_System_IO_Stream_">SaveRtf(Stream)</a>
        </td>
        <td class="markdown level1 summary"><p>Saves the document to the specified stream in RTF format.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_SaveRtf_System_String_" data-uid="C1.Win.C1Editor.C1Editor.SaveRtf(System.String)">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.SaveRtf.html#C1_Win_C1Editor_C1Editor_SaveRtf_System_String_">SaveRtf(string)</a>
        </td>
        <td class="markdown level1 summary"><p>Saves the document to the specified file in RTF format.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_SaveXml" data-uid="C1.Win.C1Editor.C1Editor.SaveXml">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.SaveXml.html#C1_Win_C1Editor_C1Editor_SaveXml">SaveXml()</a>
        </td>
        <td class="markdown level1 summary"><p>Returns the XML content of the document as a string.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_SaveXml_System_IO_Stream_" data-uid="C1.Win.C1Editor.C1Editor.SaveXml(System.IO.Stream)">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.SaveXml.html#C1_Win_C1Editor_C1Editor_SaveXml_System_IO_Stream_">SaveXml(Stream)</a>
        </td>
        <td class="markdown level1 summary"><p>Saves the document to the specified stream in XML format.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_SaveXml_System_String_" data-uid="C1.Win.C1Editor.C1Editor.SaveXml(System.String)">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.SaveXml.html#C1_Win_C1Editor_C1Editor_SaveXml_System_String_">SaveXml(string)</a>
        </td>
        <td class="markdown level1 summary"><p>Saves the document to the specified file in XML format.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_ScrollIntoView" data-uid="C1.Win.C1Editor.C1Editor.ScrollIntoView">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.ScrollIntoView.html#C1_Win_C1Editor_C1Editor_ScrollIntoView">ScrollIntoView()</a>
        </td>
        <td class="markdown level1 summary"><p>Scrolls current document selection into view.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_Select_System_Int32_System_Int32_" data-uid="C1.Win.C1Editor.C1Editor.Select(System.Int32,System.Int32)">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.Select.html#C1_Win_C1Editor_C1Editor_Select_System_Int32_System_Int32_">Select(int, int)</a>
        </td>
        <td class="markdown level1 summary"><p>Creates a range that begins with the specified starting character and continues through the specified length of characters, and moves selection to the range.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_SelectAll" data-uid="C1.Win.C1Editor.C1Editor.SelectAll">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.SelectAll.html#C1_Win_C1Editor_C1Editor_SelectAll">SelectAll()</a>
        </td>
        <td class="markdown level1 summary"><p>Selects the entire contents of the editor.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_ShowDialog_C1_Win_C1Editor_DialogType_" data-uid="C1.Win.C1Editor.C1Editor.ShowDialog(C1.Win.C1Editor.DialogType)">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.ShowDialog.html#C1_Win_C1Editor_C1Editor_ShowDialog_C1_Win_C1Editor_DialogType_">ShowDialog(DialogType)</a>
        </td>
        <td class="markdown level1 summary"><p>Shows the specified dialog box.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_Undo" data-uid="C1.Win.C1Editor.C1Editor.Undo">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.Undo.html#C1_Win_C1Editor_C1Editor_Undo">Undo()</a>
        </td>
        <td class="markdown level1 summary"><p>Performs Undo action in the current editor mode (design or source).</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_ValidateSource" data-uid="C1.Win.C1Editor.C1Editor.ValidateSource">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.ValidateSource.html#C1_Win_C1Editor_C1Editor_ValidateSource">ValidateSource()</a>
        </td>
        <td class="markdown level1 summary"><p>Validates document in source mode and shows validation errors if found.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_WndProc_System_Windows_Forms_Message__" data-uid="C1.Win.C1Editor.C1Editor.WndProc(System.Windows.Forms.Message@)">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.WndProc.html#C1_Win_C1Editor_C1Editor_WndProc_System_Windows_Forms_Message__">WndProc(ref Message)</a>
        </td>
        <td class="markdown level1 summary"><p>Overrides <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.forms.control.wndproc">WndProc(ref Message)</a>.</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_C1Editor_C1Editor_AfterSave" data-uid="C1.Win.C1Editor.C1Editor.AfterSave">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.AfterSave.html">AfterSave</a>
        </td>
        <td class="markdown level1 summary"><p>Occurs after the document is saved.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_BeforeModeChange" data-uid="C1.Win.C1Editor.C1Editor.BeforeModeChange">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.BeforeModeChange.html">BeforeModeChange</a>
        </td>
        <td class="markdown level1 summary"><p>Occurs when the <a class="xref" href="C1.Win.C1Editor.C1Editor.Mode.html#C1_Win_C1Editor_C1Editor_Mode">Mode</a> of the Editor is about to change.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_BeforeSave" data-uid="C1.Win.C1Editor.C1Editor.BeforeSave">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.BeforeSave.html">BeforeSave</a>
        </td>
        <td class="markdown level1 summary"><p>Occurs before the document is saved.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_DocumentChanged" data-uid="C1.Win.C1Editor.C1Editor.DocumentChanged">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.DocumentChanged.html">DocumentChanged</a>
        </td>
        <td class="markdown level1 summary"><p>Occurs when any change has happened in the document.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_HtmlEvent" data-uid="C1.Win.C1Editor.C1Editor.HtmlEvent">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.HtmlEvent.html">HtmlEvent</a>
        </td>
        <td class="markdown level1 summary"><p>Occurs when an HTML event occurs in the browser.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_ModeChanged" data-uid="C1.Win.C1Editor.C1Editor.ModeChanged">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.ModeChanged.html">ModeChanged</a>
        </td>
        <td class="markdown level1 summary"><p>Occurs when the <a class="xref" href="C1.Win.C1Editor.C1Editor.Mode.html#C1_Win_C1Editor_C1Editor_Mode">Mode</a> of the Editor is changed.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_C1Editor_SelectionChanged" data-uid="C1.Win.C1Editor.C1Editor.SelectionChanged">
          <a class="xref" href="C1.Win.C1Editor.C1Editor.SelectionChanged.html">SelectionChanged</a>
        </td>
        <td class="markdown level1 summary"><p>Occurs when the current selection is changed.</p>
</td>
      </tr>
    </tbody>
  </table>

</div>
