# GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox

## Content

<div class="doc-site-dotnet-api-container">



  <h1 id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox" class="text-break">GcTextBox Class
</h1>
  <div class="markdown level0 summary"><p>Represents a <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.html">GcTextBox</a> control that can be used to display or edit text with specific format.</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.windows.media.visual">Visual</a></div>
    <div class="level2"><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.uielement">UIElement</a></div>
    <div class="level3"><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.frameworkelement">FrameworkElement</a></div>
    <div class="level4"><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.controls.control">Control</a></div>
    <div class="level5"><a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.ControlBase.html">ControlBase</a></div>
    <div class="level6"><a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.EditBase.html">EditBase</a></div>
    <div class="level7"><span class="xref">GcTextBox</span></div>
  </div>
  <div class="implements">
    <h5>Implements</h5>
    <div><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.media.animation.ianimatable">IAnimatable</a></div>
    <div><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.iframeworkinputelement">IFrameworkInputElement</a></div>
    <div><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.iinputelement">IInputElement</a></div>
    <div><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.markup.iqueryambient">IQueryAmbient</a></div>
    <div><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.markup.iaddchild">IAddChild</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="GrapeCity.Wpf.SpreadSheet.CellType.Editors.html">GrapeCity.Wpf.SpreadSheet.CellType.Editors</a></h6>
  <h6><strong>Assembly</strong>: GrapeCity.Wpf.SpreadSheet.CellType.dll</h6>
  <h5 id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_syntax">Syntax</h5>
  <div class="codewrapper">
    <pre><code class="lang-csharp hljs">[TemplateVisualState(Name = &quot;InsertState&quot;, GroupName = &quot;EditModeStates&quot;)]
[TemplateVisualState(Name = &quot;OverwriteState&quot;, GroupName = &quot;EditModeStates&quot;)]
public class GcTextBox : EditBase, IAnimatable, IFrameworkInputElement, IInputElement, IQueryAmbient, IAddChild, ISupportInitialize</code></pre>
  </div>
  <div class="codewrapper">
    <pre><code class="lang-vbnet hljs">&lt;TemplateVisualState(Name:=&quot;InsertState&quot;, GroupName:=&quot;EditModeStates&quot;)&gt;
&lt;TemplateVisualState(Name:=&quot;OverwriteState&quot;, GroupName:=&quot;EditModeStates&quot;)&gt;
Public Class GcTextBox
    Inherits EditBase
    Implements IAnimatable, IFrameworkInputElement, IInputElement, IQueryAmbient, IAddChild, ISupportInitialize</code></pre>
  </div>
  <h5 id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_remarks"><strong>Remarks</strong></h5>
  <div class="markdown level0 remarks"><p>
     The <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.html">GcTextBox</a> is a composite control that that is composed of several encapsulated components. Consequently, some events do not bubble up to the containing control because they are handled by encapsulated child elements. Because of this, application developers should listen for the tunneling version of an event (denoted by the prefix "Preview").
    </p>
<p>
  <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.html">GcTextBox</a> supports unformatted and formatted text.
    </p>
<p>
    Horizontally and vertically aligning text within a <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.html">GcTextBox</a> is done with the <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.controls.control.horizontalcontentalignment">HorizontalContentAlignment</a> and <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.controls.control.verticalcontentalignment">VerticalContentAlignment</a> properties. Aligning the <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.html">GcTextBox</a> within the layout of the page is done with the <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.frameworkelement.horizontalalignment">HorizontalAlignment</a> and <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.frameworkelement.verticalalignment">VerticalAlignment</a> properties.
    </p>
<p>
    The best way to hide the border around a <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.html">GcTextBox</a> is to set the <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.controls.control.borderthickness">BorderThickness</a> property of the <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.html">GcTextBox</a> to 0.
    </p>
<p>
    Scrollbars are not visible on a <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.html">GcTextBox</a> by default. To make scrollbars visible, set the <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.VerticalScrollBarVisibility.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_VerticalScrollBarVisibility">VerticalScrollBarVisibility</a>  and <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.HorizontalScrollBarVisibility.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_HorizontalScrollBarVisibility">HorizontalScrollBarVisibility</a> properties to <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.controls.scrollbarvisibility#system-windows-controls-scrollbarvisibility-visible">Visible</a> or <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.controls.scrollbarvisibility#system-windows-controls-scrollbarvisibility-auto">Auto</a>.
    </p>
    Usually the <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.EditBase.TextChanged.html">TextChanged</a> event should be used to detect whenever the text in a <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.html">GcTextBox</a> changes rather then <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.uielement.keydown">KeyDown</a> as you might expect.
    <p><b>Supported <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.visualstate">VisualState</a> list:</b><table width="50%" cellspacing="2" cellpadding="5" frame="lhs"><tr><th><p>VisualStateGroup Name</p></th><th><p>VisualState Name</p></th><th><p>Description</p></th></tr><tr><td><p>CommonStates</p></td><td><p>Normal</p></td><td><p>Represents the visual appearance when control is in normal state.</p></td></tr><tr><td><p>CommonStates</p></td><td><p>Disabled</p></td><td><p>Represents the visual appearance when <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.uielement.isenabled">IsEnabled</a> is <a href="https://learn.microsoft.com/dotnet/csharp/language-reference/builtin-types/bool">false</a>.</p></td></tr><tr><td><p>CommonStates</p></td><td><p>ReadOnly</p></td><td><p>Represents the visual appearance when <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.EditBase.IsReadOnly.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_EditBase_IsReadOnly">IsReadOnly</a> is <a href="https://learn.microsoft.com/dotnet/csharp/language-reference/builtin-types/bool">true</a>.</p></td>l
        </tr><tr><td><p>CommonStates</p></td><td><p>MouseOver</p></td><td><p>Represents the visual appearance when <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.uielement.ismouseover">IsMouseOver</a> is <a href="https://learn.microsoft.com/dotnet/csharp/language-reference/builtin-types/bool">true</a>.</p></td></tr><tr><td><p>ActiveStates</p></td><td><p>Active</p></td><td><p>Represents the visual appearance when <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.ControlBase.IsActive.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_ControlBase_IsActive">IsActive</a> is <a href="https://learn.microsoft.com/dotnet/csharp/language-reference/builtin-types/bool">true</a>.</p></td></tr><tr><td><p>ActiveStates</p></td><td><p>Inactive</p></td><td><p>Represents the visual appearance when <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.ControlBase.IsActive.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_ControlBase_IsActive">IsActive</a> is <a href="https://learn.microsoft.com/dotnet/csharp/language-reference/builtin-types/bool">false</a>.</p></td></tr><tr><td><p>ValidationStates</p></td><td><p>Valid</p></td><td><p>Represents the visual appearance when <span class="xref">System.Windows.Controls.Validation.GetHasError(System.Windows.DependencyObject)</span> returns <a href="https://learn.microsoft.com/dotnet/csharp/language-reference/builtin-types/bool">false</a>.</p></td></tr><tr><td><p>ValidationStates</p></td><td><p>InvalidFocused</p></td><td><p>Represents the visual appearance when <span class="xref">System.Windows.Controls.Validation.GetHasError(System.Windows.DependencyObject)</span> returns <a href="https://learn.microsoft.com/dotnet/csharp/language-reference/builtin-types/bool">true</a> and control has focus.</p></td></tr><tr><td><p>ValidationStates</p></td><td><p>InvalidUnfocused</p></td><td><p>Represents the visual appearance when <span class="xref">System.Windows.Controls.Validation.GetHasError(System.Windows.DependencyObject)</span> returns <a href="https://learn.microsoft.com/dotnet/csharp/language-reference/builtin-types/bool">true</a> and control has no focus.</p></td></tr></table>
</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="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox__ctor" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.#ctor">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.-ctor.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox__ctor">GcTextBox()</a>
        </td>
        <td class="markdown level1 summary"><p>Initializes a new instance of the <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.html">GcTextBox</a> class.</p>
</td>
      </tr>
    </tbody>
  </table>
  <h3 id="fields">Fields
</h3>
  <table class="table table-bordered table-condensed">
    <thead>
      <tr>
        <th>Name</th>
        <th>Description</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_AcceptsCrLfProperty" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.AcceptsCrLfProperty">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.AcceptsCrLfProperty.html">AcceptsCrLfProperty</a>
        </td>
        <td class="markdown level1 summary"><p>Identifies the <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.AcceptsCrLf.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_AcceptsCrLf">AcceptsCrLf</a> dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_AcceptsReturnProperty" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.AcceptsReturnProperty">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.AcceptsReturnProperty.html">AcceptsReturnProperty</a>
        </td>
        <td class="markdown level1 summary"><p>Identifies the <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.AcceptsReturn.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_AcceptsReturn">AcceptsReturn</a> dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_AcceptsTabProperty" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.AcceptsTabProperty">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.AcceptsTabProperty.html">AcceptsTabProperty</a>
        </td>
        <td class="markdown level1 summary"><p>Identifies the <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.AcceptsTab.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_AcceptsTab">AcceptsTab</a> dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_AutoConvertProperty" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.AutoConvertProperty">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.AutoConvertProperty.html">AutoConvertProperty</a>
        </td>
        <td class="markdown level1 summary"><p>Identifies the <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.AutoConvert.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_AutoConvert">AutoConvert</a> dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_AutoWordSelectionProperty" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.AutoWordSelectionProperty">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.AutoWordSelectionProperty.html">AutoWordSelectionProperty</a>
        </td>
        <td class="markdown level1 summary"><p>Identifies the <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.AutoWordSelection.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_AutoWordSelection">AutoWordSelection</a> dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_CountWrappedLineProperty" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.CountWrappedLineProperty">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.CountWrappedLineProperty.html">CountWrappedLineProperty</a>
        </td>
        <td class="markdown level1 summary"><p>Identifies the <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.CountWrappedLine.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_CountWrappedLine">CountWrappedLine</a> dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_EllipsisProperty" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.EllipsisProperty">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.EllipsisProperty.html">EllipsisProperty</a>
        </td>
        <td class="markdown level1 summary"><p>Identifies the <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.Ellipsis.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_Ellipsis">Ellipsis</a> dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_EllipsisStringProperty" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.EllipsisStringProperty">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.EllipsisStringProperty.html">EllipsisStringProperty</a>
        </td>
        <td class="markdown level1 summary"><p>Identifies the <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.EllipsisString.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_EllipsisString">EllipsisString</a> dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_ExitOnLastCharProperty" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.ExitOnLastCharProperty">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.ExitOnLastCharProperty.html">ExitOnLastCharProperty</a>
        </td>
        <td class="markdown level1 summary"><p>Identifies the <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.ExitOnLastChar.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_ExitOnLastChar">ExitOnLastChar</a> dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_FormatProperty" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.FormatProperty">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.FormatProperty.html">FormatProperty</a>
        </td>
        <td class="markdown level1 summary"><p>Identifies the <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.Format.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_Format">Format</a> dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_GridLineBrushProperty" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.GridLineBrushProperty">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.GridLineBrushProperty.html">GridLineBrushProperty</a>
        </td>
        <td class="markdown level1 summary"><p>Identifies the <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.GridLineBrush.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_GridLineBrush">GridLineBrush</a> dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_GridLineStyleProperty" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.GridLineStyleProperty">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.GridLineStyleProperty.html">GridLineStyleProperty</a>
        </td>
        <td class="markdown level1 summary"><p>Identifies the <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.GridLineStyle.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_GridLineStyle">GridLineStyle</a> dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_HighlightTextProperty" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.HighlightTextProperty">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.HighlightTextProperty.html">HighlightTextProperty</a>
        </td>
        <td class="markdown level1 summary"><p>Identifies the <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.HighlightText.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_HighlightText">HighlightText</a> dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_HorizontalScrollBarVisibilityProperty" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.HorizontalScrollBarVisibilityProperty">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.HorizontalScrollBarVisibilityProperty.html">HorizontalScrollBarVisibilityProperty</a>
        </td>
        <td class="markdown level1 summary"><p>Identifies the <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.HorizontalScrollBarVisibility.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_HorizontalScrollBarVisibility">HorizontalScrollBarVisibility</a> dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_MaxLengthProperty" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.MaxLengthProperty">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.MaxLengthProperty.html">MaxLengthProperty</a>
        </td>
        <td class="markdown level1 summary"><p>Identifies the <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.MaxLength.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_MaxLength">MaxLength</a> dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_MaxLengthUnitProperty" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.MaxLengthUnitProperty">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.MaxLengthUnitProperty.html">MaxLengthUnitProperty</a>
        </td>
        <td class="markdown level1 summary"><p>Identifies the <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.MaxLengthUnit.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_MaxLengthUnit">MaxLengthUnit</a> dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_MaxLineCountProperty" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.MaxLineCountProperty">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.MaxLineCountProperty.html">MaxLineCountProperty</a>
        </td>
        <td class="markdown level1 summary"><p>Identifies the <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.MaxLineCount.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_MaxLineCount">MaxLineCount</a> dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_MaxLinesProperty" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.MaxLinesProperty">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.MaxLinesProperty.html">MaxLinesProperty</a>
        </td>
        <td class="markdown level1 summary"><p>Identifies the <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.MaxLines.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_MaxLines">MaxLines</a> dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_MinLinesProperty" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.MinLinesProperty">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.MinLinesProperty.html">MinLinesProperty</a>
        </td>
        <td class="markdown level1 summary"><p>Identifies the <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.MinLines.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_MinLines">MinLines</a> dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_MultilineProperty" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.MultilineProperty">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.MultilineProperty.html">MultilineProperty</a>
        </td>
        <td class="markdown level1 summary"><p>Identifies the <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.Multiline.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_Multiline">Multiline</a> dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_RecommendedValueProperty" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.RecommendedValueProperty">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.RecommendedValueProperty.html">RecommendedValueProperty</a>
        </td>
        <td class="markdown level1 summary"><p>Identifies the GrapeCity.Windows.InputMan.GcTextBox.RecommendedValue dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_ShowOverflowTipProperty" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.ShowOverflowTipProperty">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.ShowOverflowTipProperty.html">ShowOverflowTipProperty</a>
        </td>
        <td class="markdown level1 summary"><p>Identifies the <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.ShowOverflowTip.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_ShowOverflowTip">ShowOverflowTip</a> dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_ShowRecommendedValueProperty" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.ShowRecommendedValueProperty">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.ShowRecommendedValueProperty.html">ShowRecommendedValueProperty</a>
        </td>
        <td class="markdown level1 summary"><p>Identifies the GrapeCity.Windows.InputMan.GcTextBox.ShowRecommendedValue dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_TextWrappingProperty" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.TextWrappingProperty">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.TextWrappingProperty.html">TextWrappingProperty</a>
        </td>
        <td class="markdown level1 summary"><p>Identifies the <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.TextWrapping.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_TextWrapping">TextWrapping</a> dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_VerticalScrollBarVisibilityProperty" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.VerticalScrollBarVisibilityProperty">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.VerticalScrollBarVisibilityProperty.html">VerticalScrollBarVisibilityProperty</a>
        </td>
        <td class="markdown level1 summary"><p>Identifies the <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.VerticalScrollBarVisibility.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_VerticalScrollBarVisibility">VerticalScrollBarVisibility</a> dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_WatermarkDisplayNullForegroundProperty" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.WatermarkDisplayNullForegroundProperty">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.WatermarkDisplayNullForegroundProperty.html">WatermarkDisplayNullForegroundProperty</a>
        </td>
        <td class="markdown level1 summary"><p>Identifies the GrapeCity.Windows.InputMan.GcTextBox.WatermarkDisplayNullForeground dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_WatermarkDisplayNullProperty" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.WatermarkDisplayNullProperty">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.WatermarkDisplayNullProperty.html">WatermarkDisplayNullProperty</a>
        </td>
        <td class="markdown level1 summary"><p>Identifies the GrapeCity.Windows.InputMan.GcTextBox.WatermarkDisplayNull dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_WatermarkNullForegroundProperty" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.WatermarkNullForegroundProperty">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.WatermarkNullForegroundProperty.html">WatermarkNullForegroundProperty</a>
        </td>
        <td class="markdown level1 summary"><p>Identifies the GrapeCity.Windows.InputMan.GcTextBox.WatermarkNullForeground dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_WatermarkNullProperty" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.WatermarkNullProperty">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.WatermarkNullProperty.html">WatermarkNullProperty</a>
        </td>
        <td class="markdown level1 summary"><p>Identifies the GrapeCity.Windows.InputMan.GcTextBox.WatermarkNull dependency property.</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="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_AcceptsCrLf" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.AcceptsCrLf">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.AcceptsCrLf.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_AcceptsCrLf">AcceptsCrLf</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a value indicating how to process the CrLf chars when pasting string. This is a dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_AcceptsReturn" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.AcceptsReturn">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.AcceptsReturn.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_AcceptsReturn">AcceptsReturn</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a value indicating whether pressing ENTER in a multiline <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.html">GcTextBox</a> control creates a
new line of text in the control. This is a dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_AcceptsTab" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.AcceptsTab">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.AcceptsTab.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_AcceptsTab">AcceptsTab</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a value that indicates how the text editing control responds when the user presses the TAB key. This is a dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_ApplyRecommendedValueCommand" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.ApplyRecommendedValueCommand">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.ApplyRecommendedValueCommand.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_ApplyRecommendedValueCommand">ApplyRecommendedValueCommand</a>
        </td>
        <td class="markdown level1 summary"><p>Represents the <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.ApplyRecommendedValueCommand.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_ApplyRecommendedValueCommand">ApplyRecommendedValueCommand</a> command, which requests that recommended value be applied.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_AutoConvert" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.AutoConvert">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.AutoConvert.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_AutoConvert">AutoConvert</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets whether to automatically convert the entered characters
according to the input mask. This is a dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_AutoWordSelection" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.AutoWordSelection">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.AutoWordSelection.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_AutoWordSelection">AutoWordSelection</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a value that determines whether when a user selects part of a word by dragging across it with the mouse, the rest of the word is selected. This is a dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_ClearCommand" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.ClearCommand">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.ClearCommand.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_ClearCommand">ClearCommand</a>
        </td>
        <td class="markdown level1 summary"><p>Represents the <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.ClearCommand.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_ClearCommand">ClearCommand</a> command, which requests that <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.html">GcTextBox</a> to clear all the text.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_CountWrappedLine" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.CountWrappedLine">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.CountWrappedLine.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_CountWrappedLine">CountWrappedLine</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.boolean">bool</a> value that indicates whether to count the wrapped line
when limit the count of lines counted by <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.MaxLineCount.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_MaxLineCount">MaxLineCount</a> property. This is a dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_Ellipsis" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.Ellipsis">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.Ellipsis.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_Ellipsis">Ellipsis</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a value indicating how the ellipsis character (...) appears,
denoting that the  <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.html">GcTextBox</a> text extends beyond the specified length of the <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.html">GcTextBox</a>.
This is a dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_EllipsisString" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.EllipsisString">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.EllipsisString.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_EllipsisString">EllipsisString</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets what is shown as ellipsis when width of text is longer than control. This is a dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_ExitOnLastChar" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.ExitOnLastChar">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.ExitOnLastChar.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_ExitOnLastChar">ExitOnLastChar</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets whether or not the next control in the tab order receives the focus as
soon as the control is filled at the last character.
This is a dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_Format" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.Format">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.Format.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_Format">Format</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the input format to use in the control. This is a dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_GridLineBrush" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.GridLineBrush">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.GridLineBrush.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_GridLineBrush">GridLineBrush</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.media.brush">Brush</a> used to paint the grid lines. This is a dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_GridLineStyle" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.GridLineStyle">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.GridLineStyle.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_GridLineStyle">GridLineStyle</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a GrapeCity.Windows.InputMan.LineStyle enumeration value that indicates the grid line style for each lines. This is a dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_HighlightText" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.HighlightText">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.HighlightText.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_HighlightText">HighlightText</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets whether to highlight text in the control. This is a dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_HorizontalScrollBarVisibility" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.HorizontalScrollBarVisibility">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.HorizontalScrollBarVisibility.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_HorizontalScrollBarVisibility">HorizontalScrollBarVisibility</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a value that indicates whether a horizontal scroll bar is shown. This is a dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_LineCount" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.LineCount">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.LineCount.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_LineCount">LineCount</a>
        </td>
        <td class="markdown level1 summary"><p>Gets the total number of lines in the text box.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_MaxLength" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.MaxLength">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.MaxLength.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_MaxLength">MaxLength</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the maximum number of characters or bytes that the control can hold. This is a dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_MaxLengthUnit" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.MaxLengthUnit">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.MaxLengthUnit.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_MaxLengthUnit">MaxLengthUnit</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets whether the maximum number of characters that can hold in the control
are handled based on bytes, characters or text elements. This is a dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_MaxLineCount" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.MaxLineCount">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.MaxLineCount.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_MaxLineCount">MaxLineCount</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the maximum counts of acceptable lines.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_MaxLines" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.MaxLines">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.MaxLines.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_MaxLines">MaxLines</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the maximum number of visible lines. This is a dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_MinLines" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.MinLines">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.MinLines.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_MinLines">MinLines</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the minimum number of visible lines. This is a dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_Multiline" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.Multiline">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.Multiline.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_Multiline">Multiline</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets whether the control can accept and display multiple lines of text.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_RecommendedValue" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.RecommendedValue">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.RecommendedValue.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_RecommendedValue">RecommendedValue</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the recommended value.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_ShowOverflowTip" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.ShowOverflowTip">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.ShowOverflowTip.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_ShowOverflowTip">ShowOverflowTip</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or set whether to show overflow tooltip.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_ShowRecommendedValue" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.ShowRecommendedValue">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.ShowRecommendedValue.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_ShowRecommendedValue">ShowRecommendedValue</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a value indicating whether show the recommended value.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_TextWrapping" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.TextWrapping">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.TextWrapping.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_TextWrapping">TextWrapping</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets how the text box should wrap text. This is a dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_VerticalScrollBarVisibility" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.VerticalScrollBarVisibility">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.VerticalScrollBarVisibility.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_VerticalScrollBarVisibility">VerticalScrollBarVisibility</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a value that indicates whether a vertical scroll bar is shown. This is a dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_WatermarkDisplayNull" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.WatermarkDisplayNull">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.WatermarkDisplayNull.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_WatermarkDisplayNull">WatermarkDisplayNull</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the watermark display text when the value is <a href="https://learn.microsoft.com/dotnet/csharp/language-reference/keywords/null">null</a> and <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.html">GcTextBox</a> is not active.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_WatermarkDisplayNullForeground" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.WatermarkDisplayNullForeground">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.WatermarkDisplayNullForeground.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_WatermarkDisplayNullForeground">WatermarkDisplayNullForeground</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the foreground of the watermark display text when <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.WatermarkDisplayNull.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_WatermarkDisplayNull">WatermarkDisplayNull</a> shows.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_WatermarkNull" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.WatermarkNull">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.WatermarkNull.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_WatermarkNull">WatermarkNull</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the watermark text when the value is <a href="https://learn.microsoft.com/dotnet/csharp/language-reference/keywords/null">null</a>.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_WatermarkNullForeground" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.WatermarkNullForeground">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.WatermarkNullForeground.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_WatermarkNullForeground">WatermarkNullForeground</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the foreground of the watermark text when the value is <a href="https://learn.microsoft.com/dotnet/csharp/language-reference/keywords/null">null</a>.</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="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_GetCharacterIndexFromLineIndex_System_Int32_" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.GetCharacterIndexFromLineIndex(System.Int32)">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.GetCharacterIndexFromLineIndex.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_GetCharacterIndexFromLineIndex_System_Int32_">GetCharacterIndexFromLineIndex(int)</a>
        </td>
        <td class="markdown level1 summary"><p>Returns the zero-based character index for the first character in the specified line.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_GetCharacterIndexFromPoint_System_Windows_Point_System_Boolean_" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.GetCharacterIndexFromPoint(System.Windows.Point,System.Boolean)">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.GetCharacterIndexFromPoint.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_GetCharacterIndexFromPoint_System_Windows_Point_System_Boolean_">GetCharacterIndexFromPoint(Point, bool)</a>
        </td>
        <td class="markdown level1 summary"><p>Returns the zero-based insertion index for the specified point.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_GetFirstVisibleLineIndex" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.GetFirstVisibleLineIndex">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.GetFirstVisibleLineIndex.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_GetFirstVisibleLineIndex">GetFirstVisibleLineIndex()</a>
        </td>
        <td class="markdown level1 summary"><p>Returns the line index for the first line that is currently visible in the text box.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_GetLastVisibleLineIndex" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.GetLastVisibleLineIndex">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.GetLastVisibleLineIndex.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_GetLastVisibleLineIndex">GetLastVisibleLineIndex()</a>
        </td>
        <td class="markdown level1 summary"><p>Returns the line index for the last line that is currently visible in the text box.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_GetLineIndexFromCharacterIndex_System_Int32_" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.GetLineIndexFromCharacterIndex(System.Int32)">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.GetLineIndexFromCharacterIndex.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_GetLineIndexFromCharacterIndex_System_Int32_">GetLineIndexFromCharacterIndex(int)</a>
        </td>
        <td class="markdown level1 summary"><p>Returns the zero-based line index for the line that contains the specified character index.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_GetLineLength_System_Int32_" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.GetLineLength(System.Int32)">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.GetLineLength.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_GetLineLength_System_Int32_">GetLineLength(int)</a>
        </td>
        <td class="markdown level1 summary"><p>Returns the number of characters in the specified line.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_GetLineText_System_Int32_" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.GetLineText(System.Int32)">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.GetLineText.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_GetLineText_System_Int32_">GetLineText(int)</a>
        </td>
        <td class="markdown level1 summary"><p>Returns the text that is currently displayed on the specified line.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_GetRectFromCharacterIndex_System_Int32_" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.GetRectFromCharacterIndex(System.Int32)">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.GetRectFromCharacterIndex.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_GetRectFromCharacterIndex_System_Int32_">GetRectFromCharacterIndex(int)</a>
        </td>
        <td class="markdown level1 summary"><p>Returns the rectangle for the leading edge of the character at the specified index.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_GetRectFromCharacterIndex_System_Int32_System_Boolean_" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.GetRectFromCharacterIndex(System.Int32,System.Boolean)">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.GetRectFromCharacterIndex.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_GetRectFromCharacterIndex_System_Int32_System_Boolean_">GetRectFromCharacterIndex(int, bool)</a>
        </td>
        <td class="markdown level1 summary"><p>Returns the rectangle for the leading or trailing edge of the character at the specified index.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_LineDown" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.LineDown">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.LineDown.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_LineDown">LineDown()</a>
        </td>
        <td class="markdown level1 summary"><p>Scrolls the contents of the control down by one line.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_LineLeft" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.LineLeft">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.LineLeft.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_LineLeft">LineLeft()</a>
        </td>
        <td class="markdown level1 summary"><p>Scrolls the contents of the control to the left by one line.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_LineRight" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.LineRight">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.LineRight.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_LineRight">LineRight()</a>
        </td>
        <td class="markdown level1 summary"><p>Scrolls the contents of the control to the right by one line.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_LineUp" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.LineUp">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.LineUp.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_LineUp">LineUp()</a>
        </td>
        <td class="markdown level1 summary"><p>Scrolls the contents of the control upward by one line.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_OnIsActiveChanged_System_Windows_RoutedEventArgs_" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.OnIsActiveChanged(System.Windows.RoutedEventArgs)">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.OnIsActiveChanged.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_OnIsActiveChanged_System_Windows_RoutedEventArgs_">OnIsActiveChanged(RoutedEventArgs)</a>
        </td>
        <td class="markdown level1 summary"><p>Called when <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.ControlBase.IsActive.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_ControlBase_IsActive">IsActive</a> property changed.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_PageDown" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.PageDown">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.PageDown.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_PageDown">PageDown()</a>
        </td>
        <td class="markdown level1 summary"><p>Scrolls the contents of the control down by one page.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_PageLeft" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.PageLeft">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.PageLeft.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_PageLeft">PageLeft()</a>
        </td>
        <td class="markdown level1 summary"><p>Scrolls the contents of the control to the left by one page.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_PageRight" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.PageRight">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.PageRight.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_PageRight">PageRight()</a>
        </td>
        <td class="markdown level1 summary"><p>Scrolls the contents of the control to the right by one page.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_PageUp" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.PageUp">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.PageUp.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_PageUp">PageUp()</a>
        </td>
        <td class="markdown level1 summary"><p>Scrolls the contents of the control up by one page.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_ScrollToEnd" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.ScrollToEnd">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.ScrollToEnd.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_ScrollToEnd">ScrollToEnd()</a>
        </td>
        <td class="markdown level1 summary"><p>Scrolls the view of the editing control to the end of the content.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_ScrollToHome" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.ScrollToHome">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.ScrollToHome.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_ScrollToHome">ScrollToHome()</a>
        </td>
        <td class="markdown level1 summary"><p>Scrolls the view of the editing control to the beginning of the viewport.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_ScrollToHorizontalOffset_System_Double_" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.ScrollToHorizontalOffset(System.Double)">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.ScrollToHorizontalOffset.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_ScrollToHorizontalOffset_System_Double_">ScrollToHorizontalOffset(double)</a>
        </td>
        <td class="markdown level1 summary"><p>Scrolls the contents of the editing control to the specified horizontal offset.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_ScrollToLine_System_Int32_" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.ScrollToLine(System.Int32)">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.ScrollToLine.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_ScrollToLine_System_Int32_">ScrollToLine(int)</a>
        </td>
        <td class="markdown level1 summary"><p>Scrolls the line at the specified line index into view.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_ScrollToVerticalOffset_System_Double_" data-uid="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.ScrollToVerticalOffset(System.Double)">
          <a class="xref" href="GrapeCity.Wpf.SpreadSheet.CellType.Editors.GcTextBox.ScrollToVerticalOffset.html#GrapeCity_Wpf_SpreadSheet_CellType_Editors_GcTextBox_ScrollToVerticalOffset_System_Double_">ScrollToVerticalOffset(double)</a>
        </td>
        <td class="markdown level1 summary"><p>Scrolls the contents of the editing control to the specified vertical offset.</p>
</td>
      </tr>
    </tbody>
  </table>

</div>
