[]
        
(Showing Draft Content)

C1.Win.C1Editor.UICustomization.XHTMLRowItem

XHTMLRowItem Class

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

Inheritance
XHTMLRowItem
Namespace: C1.Win.C1Editor.UICustomization
Assembly: C1.Win.C1Editor.4.8.dll
Syntax
public class XHTMLRowItem : 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.

void IRowItemDialog.BindData(XHTMLRowItem item)
{
    _cbxVerticalAlignment.DataBindings.Add("SelectedIndex", item, "VerticalAlignment");
    _cbxHorizontalAlignment.DataBindings.Add("SelectedIndex", item, "HorizontalAlignment");
}

Properties

Name Description
HorizontalAlignment

Specifies horizontal alignment of the table row.

VerticalAlignment

Specifies vertical alignment of the table row.

Methods

Name Description
BuildXml()

For internal use only.

ParseSourceNode()

For internal use only.

StateEqual(XHTMLItemBase)

For internal use only.

See Also