[]
Provides data to bind to and use in a custom Table Row edit dialog.
public class XHTMLRowItem : XHTMLItemBase
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.
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");
}
Name | Description |
---|---|
HorizontalAlignment | Specifies horizontal alignment of the table row. |
VerticalAlignment | Specifies vertical alignment of the table row. |
Name | Description |
---|---|
BuildXml() | For internal use only. |
ParseSourceNode() | For internal use only. |
StateEqual(XHTMLItemBase) | For internal use only. |