Provides data to bind to and use in a custom Table Row edit dialog.

Namespace:  C1.Win.XmlEditor.UICustomization
Assembly:  C1.Win.XmlEditor.2 (in C1.Win.XmlEditor.2.dll)

Syntax

C#
public class XHTMLRowItem : XHTMLItemBase
Visual Basic (Declaration)
Public Class XHTMLRowItem _
	Inherits XHTMLItemBase

Remarks

Implementing a custom Table row dialog, you will receive an instance of the XHTMLRowItem class in the BindData(XHTMLRowItem) method. Use it to bind the data to the dialog's UI.

Examples

The code below binds data in the XHTMLRowItem item to GUI controls of a custom dialog form.
Copy CodeC#
void IRowItemDialog.BindData(XHTMLRowItem item)
{
    _cbxVerticalAlignment.DataBindings.Add("SelectedIndex", item, "VerticalAlignment");
    _cbxHorizontalAlignment.DataBindings.Add("SelectedIndex", item, "HorizontalAlignment");
}

Inheritance Hierarchy

System..::.Object
  C1.Win.XmlEditor.UICustomization..::.XHTMLItemBase
    C1.Win.XmlEditor.UICustomization..::.XHTMLRowItem

See Also