# C1.Win.C1Editor.UICustomization.XHTMLRowItem

## Content

<div class="doc-site-dotnet-api-container">



  <h1 id="C1_Win_C1Editor_UICustomization_XHTMLRowItem" data-uid="C1.Win.C1Editor.UICustomization.XHTMLRowItem" class="text-break">XHTMLRowItem Class
</h1>
  <div class="markdown level0 summary"><p>Provides data to bind to and use in a custom Table Row edit dialog.</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="C1.Win.C1Editor.UICustomization.XHTMLItemBase.html">XHTMLItemBase</a></div>
    <div class="level2"><span class="xref">XHTMLRowItem</span></div>
  </div>
  <h6><strong>Namespace</strong>: <a class="xref" href="C1.Win.C1Editor.UICustomization.html">C1.Win.C1Editor.UICustomization</a></h6>
  <h6><strong>Assembly</strong>: C1.Win.C1Editor.4.8.dll</h6>
  <h5 id="C1_Win_C1Editor_UICustomization_XHTMLRowItem_syntax">Syntax</h5>
  <div class="codewrapper">
    <pre><code class="lang-csharp hljs">public class XHTMLRowItem : XHTMLItemBase</code></pre>
  </div>
  <div class="codewrapper">
    <pre><code class="lang-vbnet hljs">Public Class XHTMLRowItem
    Inherits XHTMLItemBase</code></pre>
  </div>
  <h5 id="C1_Win_C1Editor_UICustomization_XHTMLRowItem_remarks"><strong>Remarks</strong></h5>
  <div class="markdown level0 remarks"><p>Implementing a custom Table row dialog, you will receive an instance of the 
            XHTMLRowItem class in the <a class="xref" href="C1.Win.C1Editor.UICustomization.IRowItemDialog.BindData.html#C1_Win_C1Editor_UICustomization_IRowItemDialog_BindData_C1_Win_C1Editor_UICustomization_XHTMLRowItem_">BindData(XHTMLRowItem)</a> method. 
            Use it to bind the data to the dialog's UI.</p>
</div>
  <h5 id="C1_Win_C1Editor_UICustomization_XHTMLRowItem_examples"><strong>Examples</strong></h5>
  <p>The code below binds data in the <a class="xref" href="C1.Win.C1Editor.UICustomization.XHTMLRowItem.html">XHTMLRowItem</a> item to GUI controls of a custom dialog form.</p>
<pre><code class="lang-csharp">void IRowItemDialog.BindData(XHTMLRowItem item)
{
    _cbxVerticalAlignment.DataBindings.Add("SelectedIndex", item, "VerticalAlignment");
    _cbxHorizontalAlignment.DataBindings.Add("SelectedIndex", item, "HorizontalAlignment");
}</code></pre>

  <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_UICustomization_XHTMLRowItem_HorizontalAlignment" data-uid="C1.Win.C1Editor.UICustomization.XHTMLRowItem.HorizontalAlignment">
          <a class="xref" href="C1.Win.C1Editor.UICustomization.XHTMLRowItem.HorizontalAlignment.html#C1_Win_C1Editor_UICustomization_XHTMLRowItem_HorizontalAlignment">HorizontalAlignment</a>
        </td>
        <td class="markdown level1 summary"><p>Specifies horizontal alignment of the table row.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_UICustomization_XHTMLRowItem_VerticalAlignment" data-uid="C1.Win.C1Editor.UICustomization.XHTMLRowItem.VerticalAlignment">
          <a class="xref" href="C1.Win.C1Editor.UICustomization.XHTMLRowItem.VerticalAlignment.html#C1_Win_C1Editor_UICustomization_XHTMLRowItem_VerticalAlignment">VerticalAlignment</a>
        </td>
        <td class="markdown level1 summary"><p>Specifies vertical alignment of the table row.</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_UICustomization_XHTMLRowItem_BuildXml" data-uid="C1.Win.C1Editor.UICustomization.XHTMLRowItem.BuildXml">
          <a class="xref" href="C1.Win.C1Editor.UICustomization.XHTMLRowItem.BuildXml.html#C1_Win_C1Editor_UICustomization_XHTMLRowItem_BuildXml">BuildXml()</a>
        </td>
        <td class="markdown level1 summary"><p>For internal use only.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_UICustomization_XHTMLRowItem_ParseSourceNode" data-uid="C1.Win.C1Editor.UICustomization.XHTMLRowItem.ParseSourceNode">
          <a class="xref" href="C1.Win.C1Editor.UICustomization.XHTMLRowItem.ParseSourceNode.html#C1_Win_C1Editor_UICustomization_XHTMLRowItem_ParseSourceNode">ParseSourceNode()</a>
        </td>
        <td class="markdown level1 summary"><p>For internal use only.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_UICustomization_XHTMLRowItem_StateEqual_C1_Win_C1Editor_UICustomization_XHTMLItemBase_" data-uid="C1.Win.C1Editor.UICustomization.XHTMLRowItem.StateEqual(C1.Win.C1Editor.UICustomization.XHTMLItemBase)">
          <a class="xref" href="C1.Win.C1Editor.UICustomization.XHTMLRowItem.StateEqual.html#C1_Win_C1Editor_UICustomization_XHTMLRowItem_StateEqual_C1_Win_C1Editor_UICustomization_XHTMLItemBase_">StateEqual(XHTMLItemBase)</a>
        </td>
        <td class="markdown level1 summary"><p>For internal use only.</p>
</td>
      </tr>
    </tbody>
  </table>
  <h3 id="seealso">See Also</h3>
  <div class="seealso">
      <div><a class="xref" href="C1.Win.C1Editor.UICustomization.CustomDialogs.TableRowDialog.html#C1_Win_C1Editor_UICustomization_CustomDialogs_TableRowDialog">TableRowDialog</a></div>
  </div>

</div>
