# C1.Win.C1Editor.UICustomization.XHTMLItemBase

## Content

<div class="doc-site-dotnet-api-container">



  <h1 id="C1_Win_C1Editor_UICustomization_XHTMLItemBase" data-uid="C1.Win.C1Editor.UICustomization.XHTMLItemBase" class="text-break">XHTMLItemBase Class
</h1>
  <div class="markdown level0 summary"><p>Base class for classes used to provide data to custom edit dialogs.</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"><span class="xref">XHTMLItemBase</span></div>
      <div class="level2"><a class="xref" href="C1.Win.C1Editor.UICustomization.XHTMLBookmarkItem.html">XHTMLBookmarkItem</a></div>
      <div class="level2"><a class="xref" href="C1.Win.C1Editor.UICustomization.XHTMLCellItem.html">XHTMLCellItem</a></div>
      <div class="level2"><a class="xref" href="C1.Win.C1Editor.UICustomization.XHTMLColumnItem.html">XHTMLColumnItem</a></div>
      <div class="level2"><a class="xref" href="C1.Win.C1Editor.UICustomization.XHTMLFlashMovieItem.html">XHTMLFlashMovieItem</a></div>
      <div class="level2"><a class="xref" href="C1.Win.C1Editor.UICustomization.XHTMLHyperlinkItem.html">XHTMLHyperlinkItem</a></div>
      <div class="level2"><a class="xref" href="C1.Win.C1Editor.UICustomization.XHTMLImageItem.html">XHTMLImageItem</a></div>
      <div class="level2"><a class="xref" href="C1.Win.C1Editor.UICustomization.XHTMLRowItem.html">XHTMLRowItem</a></div>
      <div class="level2"><a class="xref" href="C1.Win.C1Editor.UICustomization.XHTMLTableItem.html">XHTMLTableItem</a></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_XHTMLItemBase_syntax">Syntax</h5>
  <div class="codewrapper">
    <pre><code class="lang-csharp hljs">public abstract class XHTMLItemBase</code></pre>
  </div>
  <div class="codewrapper">
    <pre><code class="lang-vbnet hljs">Public MustInherit Class XHTMLItemBase</code></pre>
  </div>
  <h5 id="C1_Win_C1Editor_UICustomization_XHTMLItemBase_remarks"><strong>Remarks</strong></h5>
  <div class="markdown level0 remarks"><p>The derived classes are <a class="xref" href="C1.Win.C1Editor.UICustomization.XHTMLBookmarkItem.html">XHTMLBookmarkItem</a>, <a class="xref" href="C1.Win.C1Editor.UICustomization.XHTMLHyperlinkItem.html">XHTMLHyperlinkItem</a>, <a class="xref" href="C1.Win.C1Editor.UICustomization.XHTMLCellItem.html">XHTMLCellItem</a>, <a class="xref" href="C1.Win.C1Editor.UICustomization.XHTMLColumnItem.html">XHTMLColumnItem</a>, <a class="xref" href="C1.Win.C1Editor.UICustomization.XHTMLImageItem.html">XHTMLImageItem</a>, <a class="xref" href="C1.Win.C1Editor.UICustomization.XHTMLFlashMovieItem.html">XHTMLFlashMovieItem</a>, <a class="xref" href="C1.Win.C1Editor.UICustomization.XHTMLTableItem.html">XHTMLTableItem</a></p>
            <p>Implementing a custom dialog, you will receive an instance of a successor of the XHTMLItemBase class in the BindData method.
            Use it to bind the data to the dialog's UI.</p>
</div>
  <h5 id="C1_Win_C1Editor_UICustomization_XHTMLItemBase_examples"><strong>Examples</strong></h5>
  <p>The code below binds data in the <a class="xref" href="C1.Win.C1Editor.UICustomization.XHTMLImageItem.html">XHTMLImageItem</a> item to GUI controls of a custom dialog form.</p>
<pre><code class="lang-csharp"> void IImageItemDialog.BindData(XHTMLImageItem item)
{
    _cbxWidthType.SelectedIndex = (int)Item.WidthType;
    _cbxHeightType.SelectedIndex = (int)Item.HeightType;
    _tbWidthValue.Value = Math.Max(Item.WidthValue, 1);
    _tbHeightValue.Value = Math.Max(Item.HeightValue, 1);
    _tbSource.DataBindings.Add("Text", Item, "Source");
    _chkWidth.DataBindings.Add("Checked", Item, "UseWidth");
    _chkHeight.DataBindings.Add("Checked", Item, "UseHeight");
    _tbAlternate.DataBindings.Add("Text", Item, "Alternate");
    SetButtonState(this, EventArgs.Empty);
}</code></pre>

  <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="C1_Win_C1Editor_UICustomization_XHTMLItemBase__editor" data-uid="C1.Win.C1Editor.UICustomization.XHTMLItemBase._editor">
          <a class="xref" href="C1.Win.C1Editor.UICustomization.XHTMLItemBase._editor.html">_editor</a>
        </td>
        <td class="markdown level1 summary"><p>For internal use only.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_UICustomization_XHTMLItemBase__sourceNode" data-uid="C1.Win.C1Editor.UICustomization.XHTMLItemBase._sourceNode">
          <a class="xref" href="C1.Win.C1Editor.UICustomization.XHTMLItemBase._sourceNode.html">_sourceNode</a>
        </td>
        <td class="markdown level1 summary"><p>For internal use only.</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_UICustomization_XHTMLItemBase_ApplyButtonVisible" data-uid="C1.Win.C1Editor.UICustomization.XHTMLItemBase.ApplyButtonVisible">
          <a class="xref" href="C1.Win.C1Editor.UICustomization.XHTMLItemBase.ApplyButtonVisible.html#C1_Win_C1Editor_UICustomization_XHTMLItemBase_ApplyButtonVisible">ApplyButtonVisible</a>
        </td>
        <td class="markdown level1 summary"><p>If True, the Apply button appears in the dialog.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_UICustomization_XHTMLItemBase_DocumentName" data-uid="C1.Win.C1Editor.UICustomization.XHTMLItemBase.DocumentName">
          <a class="xref" href="C1.Win.C1Editor.UICustomization.XHTMLItemBase.DocumentName.html#C1_Win_C1Editor_UICustomization_XHTMLItemBase_DocumentName">DocumentName</a>
        </td>
        <td class="markdown level1 summary"><p>File name of the document.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_UICustomization_XHTMLItemBase_IsEditMode" data-uid="C1.Win.C1Editor.UICustomization.XHTMLItemBase.IsEditMode">
          <a class="xref" href="C1.Win.C1Editor.UICustomization.XHTMLItemBase.IsEditMode.html#C1_Win_C1Editor_UICustomization_XHTMLItemBase_IsEditMode">IsEditMode</a>
        </td>
        <td class="markdown level1 summary"><p>If True, the dialog is in editing mode; otherwise, the dialog is in creating new object mode.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_UICustomization_XHTMLItemBase_Node" data-uid="C1.Win.C1Editor.UICustomization.XHTMLItemBase.Node">
          <a class="xref" href="C1.Win.C1Editor.UICustomization.XHTMLItemBase.Node.html#C1_Win_C1Editor_UICustomization_XHTMLItemBase_Node">Node</a>
        </td>
        <td class="markdown level1 summary"><p>Returns an <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.xml.xmlnode">XmlNode</a> representing the content that is being edited in the dialog.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_UICustomization_XHTMLItemBase_Style" data-uid="C1.Win.C1Editor.UICustomization.XHTMLItemBase.Style">
          <a class="xref" href="C1.Win.C1Editor.UICustomization.XHTMLItemBase.Style.html#C1_Win_C1Editor_UICustomization_XHTMLItemBase_Style">Style</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets item style.</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_XHTMLItemBase_ApplyChanges" data-uid="C1.Win.C1Editor.UICustomization.XHTMLItemBase.ApplyChanges">
          <a class="xref" href="C1.Win.C1Editor.UICustomization.XHTMLItemBase.ApplyChanges.html#C1_Win_C1Editor_UICustomization_XHTMLItemBase_ApplyChanges">ApplyChanges()</a>
        </td>
        <td class="markdown level1 summary"><p>Applies changes made in the dialog to the document.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_UICustomization_XHTMLItemBase_BuildXml" data-uid="C1.Win.C1Editor.UICustomization.XHTMLItemBase.BuildXml">
          <a class="xref" href="C1.Win.C1Editor.UICustomization.XHTMLItemBase.BuildXml.html#C1_Win_C1Editor_UICustomization_XHTMLItemBase_BuildXml">BuildXml()</a>
        </td>
        <td class="markdown level1 summary"><p>For internal use only.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_UICustomization_XHTMLItemBase_CheckMinValue_System_Int32__System_Int32_" data-uid="C1.Win.C1Editor.UICustomization.XHTMLItemBase.CheckMinValue(System.Int32@,System.Int32)">
          <a class="xref" href="C1.Win.C1Editor.UICustomization.XHTMLItemBase.CheckMinValue.html#C1_Win_C1Editor_UICustomization_XHTMLItemBase_CheckMinValue_System_Int32__System_Int32_">CheckMinValue(ref int, int)</a>
        </td>
        <td class="markdown level1 summary"><p>For internal use only.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_UICustomization_XHTMLItemBase_CreateElement_System_String_" data-uid="C1.Win.C1Editor.UICustomization.XHTMLItemBase.CreateElement(System.String)">
          <a class="xref" href="C1.Win.C1Editor.UICustomization.XHTMLItemBase.CreateElement.html#C1_Win_C1Editor_UICustomization_XHTMLItemBase_CreateElement_System_String_">CreateElement(string)</a>
        </td>
        <td class="markdown level1 summary"><p>For internal use.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_UICustomization_XHTMLItemBase_GetAnchorNodeTemplate_System_Collections_Generic_List_System_Xml_XmlNode__" data-uid="C1.Win.C1Editor.UICustomization.XHTMLItemBase.GetAnchorNodeTemplate(System.Collections.Generic.List{System.Xml.XmlNode})">
          <a class="xref" href="C1.Win.C1Editor.UICustomization.XHTMLItemBase.GetAnchorNodeTemplate.html#C1_Win_C1Editor_UICustomization_XHTMLItemBase_GetAnchorNodeTemplate_System_Collections_Generic_List_System_Xml_XmlNode__">GetAnchorNodeTemplate(List&lt;XmlNode&gt;)</a>
        </td>
        <td class="markdown level1 summary"><p>For internal use.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_UICustomization_XHTMLItemBase_GetNodeTemplate" data-uid="C1.Win.C1Editor.UICustomization.XHTMLItemBase.GetNodeTemplate">
          <a class="xref" href="C1.Win.C1Editor.UICustomization.XHTMLItemBase.GetNodeTemplate.html#C1_Win_C1Editor_UICustomization_XHTMLItemBase_GetNodeTemplate">GetNodeTemplate()</a>
        </td>
        <td class="markdown level1 summary"><p>For internal use.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_UICustomization_XHTMLItemBase_GetStringValue_C1_Win_C1Editor_UICustomization_HorizontalAlignment_" data-uid="C1.Win.C1Editor.UICustomization.XHTMLItemBase.GetStringValue(C1.Win.C1Editor.UICustomization.HorizontalAlignment)">
          <a class="xref" href="C1.Win.C1Editor.UICustomization.XHTMLItemBase.GetStringValue.html#C1_Win_C1Editor_UICustomization_XHTMLItemBase_GetStringValue_C1_Win_C1Editor_UICustomization_HorizontalAlignment_">GetStringValue(HorizontalAlignment)</a>
        </td>
        <td class="markdown level1 summary"><p>For internal use only.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_UICustomization_XHTMLItemBase_GetStringValue_C1_Win_C1Editor_UICustomization_VerticalAlignment_" data-uid="C1.Win.C1Editor.UICustomization.XHTMLItemBase.GetStringValue(C1.Win.C1Editor.UICustomization.VerticalAlignment)">
          <a class="xref" href="C1.Win.C1Editor.UICustomization.XHTMLItemBase.GetStringValue.html#C1_Win_C1Editor_UICustomization_XHTMLItemBase_GetStringValue_C1_Win_C1Editor_UICustomization_VerticalAlignment_">GetStringValue(VerticalAlignment)</a>
        </td>
        <td class="markdown level1 summary"><p>For internal use only.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_UICustomization_XHTMLItemBase_ParseSourceNode" data-uid="C1.Win.C1Editor.UICustomization.XHTMLItemBase.ParseSourceNode">
          <a class="xref" href="C1.Win.C1Editor.UICustomization.XHTMLItemBase.ParseSourceNode.html#C1_Win_C1Editor_UICustomization_XHTMLItemBase_ParseSourceNode">ParseSourceNode()</a>
        </td>
        <td class="markdown level1 summary"><p>For internal use only.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_UICustomization_XHTMLItemBase_RaiseItemPropertiesChanged" data-uid="C1.Win.C1Editor.UICustomization.XHTMLItemBase.RaiseItemPropertiesChanged">
          <a class="xref" href="C1.Win.C1Editor.UICustomization.XHTMLItemBase.RaiseItemPropertiesChanged.html#C1_Win_C1Editor_UICustomization_XHTMLItemBase_RaiseItemPropertiesChanged">RaiseItemPropertiesChanged()</a>
        </td>
        <td class="markdown level1 summary"><p>For internal use only.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_UICustomization_XHTMLItemBase_ReadHorAlignAttribute_System_Xml_XmlAttributeCollection_C1_Win_C1Editor_UICustomization_HorizontalAlignment__" data-uid="C1.Win.C1Editor.UICustomization.XHTMLItemBase.ReadHorAlignAttribute(System.Xml.XmlAttributeCollection,C1.Win.C1Editor.UICustomization.HorizontalAlignment@)">
          <a class="xref" href="C1.Win.C1Editor.UICustomization.XHTMLItemBase.ReadHorAlignAttribute.html#C1_Win_C1Editor_UICustomization_XHTMLItemBase_ReadHorAlignAttribute_System_Xml_XmlAttributeCollection_C1_Win_C1Editor_UICustomization_HorizontalAlignment__">ReadHorAlignAttribute(XmlAttributeCollection, ref HorizontalAlignment)</a>
        </td>
        <td class="markdown level1 summary"><p>For internal use.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_UICustomization_XHTMLItemBase_ReadSizeAttribute_System_Xml_XmlAttributeCollection_System_String_System_Boolean__C1_Win_C1Editor_UICustomization_SizeType__System_Int32__" data-uid="C1.Win.C1Editor.UICustomization.XHTMLItemBase.ReadSizeAttribute(System.Xml.XmlAttributeCollection,System.String,System.Boolean@,C1.Win.C1Editor.UICustomization.SizeType@,System.Int32@)">
          <a class="xref" href="C1.Win.C1Editor.UICustomization.XHTMLItemBase.ReadSizeAttribute.html#C1_Win_C1Editor_UICustomization_XHTMLItemBase_ReadSizeAttribute_System_Xml_XmlAttributeCollection_System_String_System_Boolean__C1_Win_C1Editor_UICustomization_SizeType__System_Int32__">ReadSizeAttribute(XmlAttributeCollection, string, ref bool, ref SizeType, ref int)</a>
        </td>
        <td class="markdown level1 summary"><p>For internal use.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_UICustomization_XHTMLItemBase_ReadVertAlignAttribute_System_Xml_XmlAttributeCollection_C1_Win_C1Editor_UICustomization_VerticalAlignment__" data-uid="C1.Win.C1Editor.UICustomization.XHTMLItemBase.ReadVertAlignAttribute(System.Xml.XmlAttributeCollection,C1.Win.C1Editor.UICustomization.VerticalAlignment@)">
          <a class="xref" href="C1.Win.C1Editor.UICustomization.XHTMLItemBase.ReadVertAlignAttribute.html#C1_Win_C1Editor_UICustomization_XHTMLItemBase_ReadVertAlignAttribute_System_Xml_XmlAttributeCollection_C1_Win_C1Editor_UICustomization_VerticalAlignment__">ReadVertAlignAttribute(XmlAttributeCollection, ref VerticalAlignment)</a>
        </td>
        <td class="markdown level1 summary"><p>For internal use.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_UICustomization_XHTMLItemBase_RunItemDialog_System_Object_System_Boolean_" data-uid="C1.Win.C1Editor.UICustomization.XHTMLItemBase.RunItemDialog(System.Object,System.Boolean)">
          <a class="xref" href="C1.Win.C1Editor.UICustomization.XHTMLItemBase.RunItemDialog.html#C1_Win_C1Editor_UICustomization_XHTMLItemBase_RunItemDialog_System_Object_System_Boolean_">RunItemDialog(object, bool)</a>
        </td>
        <td class="markdown level1 summary"><p>For internal use only.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_UICustomization_XHTMLItemBase_RunItemDialog_System_Object_System_Boolean_System_Boolean_" data-uid="C1.Win.C1Editor.UICustomization.XHTMLItemBase.RunItemDialog(System.Object,System.Boolean,System.Boolean)">
          <a class="xref" href="C1.Win.C1Editor.UICustomization.XHTMLItemBase.RunItemDialog.html#C1_Win_C1Editor_UICustomization_XHTMLItemBase_RunItemDialog_System_Object_System_Boolean_System_Boolean_">RunItemDialog(object, bool, bool)</a>
        </td>
        <td class="markdown level1 summary"><p>For internal use only.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_UICustomization_XHTMLItemBase_SelectSingleNode_System_String_" data-uid="C1.Win.C1Editor.UICustomization.XHTMLItemBase.SelectSingleNode(System.String)">
          <a class="xref" href="C1.Win.C1Editor.UICustomization.XHTMLItemBase.SelectSingleNode.html#C1_Win_C1Editor_UICustomization_XHTMLItemBase_SelectSingleNode_System_String_">SelectSingleNode(string)</a>
        </td>
        <td class="markdown level1 summary"><p>For internal use.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_UICustomization_XHTMLItemBase_SetCustomSelection_C1_Win_C1Editor_C1TextRange_" data-uid="C1.Win.C1Editor.UICustomization.XHTMLItemBase.SetCustomSelection(C1.Win.C1Editor.C1TextRange)">
          <a class="xref" href="C1.Win.C1Editor.UICustomization.XHTMLItemBase.SetCustomSelection.html#C1_Win_C1Editor_UICustomization_XHTMLItemBase_SetCustomSelection_C1_Win_C1Editor_C1TextRange_">SetCustomSelection(C1TextRange)</a>
        </td>
        <td class="markdown level1 summary"><p>For internal use.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_UICustomization_XHTMLItemBase_SetDefaults" data-uid="C1.Win.C1Editor.UICustomization.XHTMLItemBase.SetDefaults">
          <a class="xref" href="C1.Win.C1Editor.UICustomization.XHTMLItemBase.SetDefaults.html#C1_Win_C1Editor_UICustomization_XHTMLItemBase_SetDefaults">SetDefaults()</a>
        </td>
        <td class="markdown level1 summary"><p>For internal use.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_UICustomization_XHTMLItemBase_StateEqual_C1_Win_C1Editor_UICustomization_XHTMLItemBase_" data-uid="C1.Win.C1Editor.UICustomization.XHTMLItemBase.StateEqual(C1.Win.C1Editor.UICustomization.XHTMLItemBase)">
          <a class="xref" href="C1.Win.C1Editor.UICustomization.XHTMLItemBase.StateEqual.html#C1_Win_C1Editor_UICustomization_XHTMLItemBase_StateEqual_C1_Win_C1Editor_UICustomization_XHTMLItemBase_">StateEqual(XHTMLItemBase)</a>
        </td>
        <td class="markdown level1 summary"><p>For internal use only.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_UICustomization_XHTMLItemBase_StringToHAlign_System_String_" data-uid="C1.Win.C1Editor.UICustomization.XHTMLItemBase.StringToHAlign(System.String)">
          <a class="xref" href="C1.Win.C1Editor.UICustomization.XHTMLItemBase.StringToHAlign.html#C1_Win_C1Editor_UICustomization_XHTMLItemBase_StringToHAlign_System_String_">StringToHAlign(string)</a>
        </td>
        <td class="markdown level1 summary"><p>Converts a string to a value of <a class="xref" href="C1.Win.C1Editor.UICustomization.HorizontalAlignment.html">HorizontalAlignment</a> type.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_UICustomization_XHTMLItemBase_StringToVAlign_System_String_" data-uid="C1.Win.C1Editor.UICustomization.XHTMLItemBase.StringToVAlign(System.String)">
          <a class="xref" href="C1.Win.C1Editor.UICustomization.XHTMLItemBase.StringToVAlign.html#C1_Win_C1Editor_UICustomization_XHTMLItemBase_StringToVAlign_System_String_">StringToVAlign(string)</a>
        </td>
        <td class="markdown level1 summary"><p>Converts a string to a value of <a class="xref" href="C1.Win.C1Editor.UICustomization.VerticalAlignment.html">VerticalAlignment</a> type.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_UICustomization_XHTMLItemBase_TryGetLocalPath_System_String_" data-uid="C1.Win.C1Editor.UICustomization.XHTMLItemBase.TryGetLocalPath(System.String)">
          <a class="xref" href="C1.Win.C1Editor.UICustomization.XHTMLItemBase.TryGetLocalPath.html#C1_Win_C1Editor_UICustomization_XHTMLItemBase_TryGetLocalPath_System_String_">TryGetLocalPath(string)</a>
        </td>
        <td class="markdown level1 summary"><p>For internal use.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_UICustomization_XHTMLItemBase_WriteAttribute_System_String_System_String_System_Boolean_" data-uid="C1.Win.C1Editor.UICustomization.XHTMLItemBase.WriteAttribute(System.String,System.String,System.Boolean)">
          <a class="xref" href="C1.Win.C1Editor.UICustomization.XHTMLItemBase.WriteAttribute.html#C1_Win_C1Editor_UICustomization_XHTMLItemBase_WriteAttribute_System_String_System_String_System_Boolean_">WriteAttribute(string, string, bool)</a>
        </td>
        <td class="markdown level1 summary"><p>For internal use.</p>
</td>
      </tr>
    </tbody>
  </table>

</div>
