# C1.Win.C1Editor.UICustomization.XHTMLFlashMovieItem

## Content

<div class="doc-site-dotnet-api-container">



  <h1 id="C1_Win_C1Editor_UICustomization_XHTMLFlashMovieItem" data-uid="C1.Win.C1Editor.UICustomization.XHTMLFlashMovieItem" class="text-break">XHTMLFlashMovieItem Class
</h1>
  <div class="markdown level0 summary"><p>Provides data to bind to and use in a custom Flash movie 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">XHTMLFlashMovieItem</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_XHTMLFlashMovieItem_syntax">Syntax</h5>
  <div class="codewrapper">
    <pre><code class="lang-csharp hljs">public class XHTMLFlashMovieItem : XHTMLItemBase</code></pre>
  </div>
  <div class="codewrapper">
    <pre><code class="lang-vbnet hljs">Public Class XHTMLFlashMovieItem
    Inherits XHTMLItemBase</code></pre>
  </div>
  <h5 id="C1_Win_C1Editor_UICustomization_XHTMLFlashMovieItem_remarks"><strong>Remarks</strong></h5>
  <div class="markdown level0 remarks"><p>Implementing a custom Flash movie dialog, you will receive an instance of the XHTMLFlashMovieItem class in the <a class="xref" href="C1.Win.C1Editor.UICustomization.IFlashMovieItemDialog.BindData.html#C1_Win_C1Editor_UICustomization_IFlashMovieItemDialog_BindData_C1_Win_C1Editor_UICustomization_XHTMLFlashMovieItem_">BindData(XHTMLFlashMovieItem)</a> method. 
            Use it to bind the data to the dialog's UI.</p>
</div>
  <h5 id="C1_Win_C1Editor_UICustomization_XHTMLFlashMovieItem_examples"><strong>Examples</strong></h5>
  <p>The code below binds data in the <a class="xref" href="C1.Win.C1Editor.UICustomization.XHTMLFlashMovieItem.html">XHTMLFlashMovieItem</a> item to GUI controls of a custom dialog form.</p>
<pre><code class="lang-csharp">void IFlashMovieItemDialog.BindData(XHTMLFlashMovieItem Item)
{
    _cbxWidthType.SelectedIndex = (int)Item.WidthType;
    _cbxHeightType.SelectedIndex = (int)Item.HeightType;
    _nudWidthValue.DataBindings.Add("Value", Item, "WidthValue");
    _nudHeightValue.DataBindings.Add("Value", Item, "HeightValue");
    _tbData.DataBindings.Add("Text", Item, "Data");
    _chbAutoplay.DataBindings.Add("Checked", Item, "Autoplay");
    _chbLoop.DataBindings.Add("Checked", Item, "Loop");
    _chkWidth.DataBindings.Add("Checked", Item, "UseWidth");
    _chkHeight.DataBindings.Add("Checked", Item, "UseHeight");
    _tbTitle.DataBindings.Add("Text", Item, "Title");
}</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_XHTMLFlashMovieItem_Autoplay" data-uid="C1.Win.C1Editor.UICustomization.XHTMLFlashMovieItem.Autoplay">
          <a class="xref" href="C1.Win.C1Editor.UICustomization.XHTMLFlashMovieItem.Autoplay.html#C1_Win_C1Editor_UICustomization_XHTMLFlashMovieItem_Autoplay">Autoplay</a>
        </td>
        <td class="markdown level1 summary"><p>Returns or sets a value which determines if the movie will begin to play an .swf file when the .swf file is loaded into the document.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_UICustomization_XHTMLFlashMovieItem_Data" data-uid="C1.Win.C1Editor.UICustomization.XHTMLFlashMovieItem.Data">
          <a class="xref" href="C1.Win.C1Editor.UICustomization.XHTMLFlashMovieItem.Data.html#C1_Win_C1Editor_UICustomization_XHTMLFlashMovieItem_Data">Data</a>
        </td>
        <td class="markdown level1 summary"><p>Defines a URL that points to the object's data.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_UICustomization_XHTMLFlashMovieItem_HeightType" data-uid="C1.Win.C1Editor.UICustomization.XHTMLFlashMovieItem.HeightType">
          <a class="xref" href="C1.Win.C1Editor.UICustomization.XHTMLFlashMovieItem.HeightType.html#C1_Win_C1Editor_UICustomization_XHTMLFlashMovieItem_HeightType">HeightType</a>
        </td>
        <td class="markdown level1 summary"><p>Specifies the units used to measure height.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_UICustomization_XHTMLFlashMovieItem_HeightValue" data-uid="C1.Win.C1Editor.UICustomization.XHTMLFlashMovieItem.HeightValue">
          <a class="xref" href="C1.Win.C1Editor.UICustomization.XHTMLFlashMovieItem.HeightValue.html#C1_Win_C1Editor_UICustomization_XHTMLFlashMovieItem_HeightValue">HeightValue</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the integer value of the movie's height.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_UICustomization_XHTMLFlashMovieItem_Loop" data-uid="C1.Win.C1Editor.UICustomization.XHTMLFlashMovieItem.Loop">
          <a class="xref" href="C1.Win.C1Editor.UICustomization.XHTMLFlashMovieItem.Loop.html#C1_Win_C1Editor_UICustomization_XHTMLFlashMovieItem_Loop">Loop</a>
        </td>
        <td class="markdown level1 summary"><p>Returns or sets a value which determines if the movie will play continuously.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_UICustomization_XHTMLFlashMovieItem_Title" data-uid="C1.Win.C1Editor.UICustomization.XHTMLFlashMovieItem.Title">
          <a class="xref" href="C1.Win.C1Editor.UICustomization.XHTMLFlashMovieItem.Title.html#C1_Win_C1Editor_UICustomization_XHTMLFlashMovieItem_Title">Title</a>
        </td>
        <td class="markdown level1 summary"><p>Specifies extra information about the element.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_UICustomization_XHTMLFlashMovieItem_UseHeight" data-uid="C1.Win.C1Editor.UICustomization.XHTMLFlashMovieItem.UseHeight">
          <a class="xref" href="C1.Win.C1Editor.UICustomization.XHTMLFlashMovieItem.UseHeight.html#C1_Win_C1Editor_UICustomization_XHTMLFlashMovieItem_UseHeight">UseHeight</a>
        </td>
        <td class="markdown level1 summary"><p><b>True</b>, if height of the movie is specified; otherwise <b>false</b>.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_UICustomization_XHTMLFlashMovieItem_UseWidth" data-uid="C1.Win.C1Editor.UICustomization.XHTMLFlashMovieItem.UseWidth">
          <a class="xref" href="C1.Win.C1Editor.UICustomization.XHTMLFlashMovieItem.UseWidth.html#C1_Win_C1Editor_UICustomization_XHTMLFlashMovieItem_UseWidth">UseWidth</a>
        </td>
        <td class="markdown level1 summary"><p><b>True</b>, if width of the movie is specified; otherwise <b>false</b>.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_UICustomization_XHTMLFlashMovieItem_WidthType" data-uid="C1.Win.C1Editor.UICustomization.XHTMLFlashMovieItem.WidthType">
          <a class="xref" href="C1.Win.C1Editor.UICustomization.XHTMLFlashMovieItem.WidthType.html#C1_Win_C1Editor_UICustomization_XHTMLFlashMovieItem_WidthType">WidthType</a>
        </td>
        <td class="markdown level1 summary"><p>Specifies the units used to measure width.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_UICustomization_XHTMLFlashMovieItem_WidthValue" data-uid="C1.Win.C1Editor.UICustomization.XHTMLFlashMovieItem.WidthValue">
          <a class="xref" href="C1.Win.C1Editor.UICustomization.XHTMLFlashMovieItem.WidthValue.html#C1_Win_C1Editor_UICustomization_XHTMLFlashMovieItem_WidthValue">WidthValue</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the integer value of the movie's width.</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_XHTMLFlashMovieItem_BuildXml" data-uid="C1.Win.C1Editor.UICustomization.XHTMLFlashMovieItem.BuildXml">
          <a class="xref" href="C1.Win.C1Editor.UICustomization.XHTMLFlashMovieItem.BuildXml.html#C1_Win_C1Editor_UICustomization_XHTMLFlashMovieItem_BuildXml">BuildXml()</a>
        </td>
        <td class="markdown level1 summary"><p>For internal use only.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_UICustomization_XHTMLFlashMovieItem_GetNodeTemplate" data-uid="C1.Win.C1Editor.UICustomization.XHTMLFlashMovieItem.GetNodeTemplate">
          <a class="xref" href="C1.Win.C1Editor.UICustomization.XHTMLFlashMovieItem.GetNodeTemplate.html#C1_Win_C1Editor_UICustomization_XHTMLFlashMovieItem_GetNodeTemplate">GetNodeTemplate()</a>
        </td>
        <td class="markdown level1 summary"><p>For internal use only.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_UICustomization_XHTMLFlashMovieItem_ParseSourceNode" data-uid="C1.Win.C1Editor.UICustomization.XHTMLFlashMovieItem.ParseSourceNode">
          <a class="xref" href="C1.Win.C1Editor.UICustomization.XHTMLFlashMovieItem.ParseSourceNode.html#C1_Win_C1Editor_UICustomization_XHTMLFlashMovieItem_ParseSourceNode">ParseSourceNode()</a>
        </td>
        <td class="markdown level1 summary"><p>For internal use only.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_UICustomization_XHTMLFlashMovieItem_SetCustomSelection_C1_Win_C1Editor_C1TextRange_" data-uid="C1.Win.C1Editor.UICustomization.XHTMLFlashMovieItem.SetCustomSelection(C1.Win.C1Editor.C1TextRange)">
          <a class="xref" href="C1.Win.C1Editor.UICustomization.XHTMLFlashMovieItem.SetCustomSelection.html#C1_Win_C1Editor_UICustomization_XHTMLFlashMovieItem_SetCustomSelection_C1_Win_C1Editor_C1TextRange_">SetCustomSelection(C1TextRange)</a>
        </td>
        <td class="markdown level1 summary"><p>For internal use only.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Editor_UICustomization_XHTMLFlashMovieItem_StateEqual_C1_Win_C1Editor_UICustomization_XHTMLItemBase_" data-uid="C1.Win.C1Editor.UICustomization.XHTMLFlashMovieItem.StateEqual(C1.Win.C1Editor.UICustomization.XHTMLItemBase)">
          <a class="xref" href="C1.Win.C1Editor.UICustomization.XHTMLFlashMovieItem.StateEqual.html#C1_Win_C1Editor_UICustomization_XHTMLFlashMovieItem_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.FlashMovieDialog.html#C1_Win_C1Editor_UICustomization_CustomDialogs_FlashMovieDialog">FlashMovieDialog</a></div>
  </div>

</div>
