'Declaration Public Class XHTMLRowItem Inherits XHTMLItemBase
public class XHTMLRowItem : XHTMLItemBase
'Declaration Public Class XHTMLRowItem Inherits XHTMLItemBase
public class XHTMLRowItem : XHTMLItemBase
Implementing a custom Table row dialog, you will receive an instance of the XHTMLRowItem class in the IRowItemDialog.BindData method. Use it to bind the data to the dialog's UI.
void IRowItemDialog.BindData(XHTMLRowItem item) { _cbxVerticalAlignment.DataBindings.Add("SelectedIndex", item, "VerticalAlignment"); _cbxHorizontalAlignment.DataBindings.Add("SelectedIndex", item, "HorizontalAlignment"); }
System.Object
C1.Win.C1Editor.UICustomization.XHTMLItemBase
C1.Win.C1Editor.UICustomization.XHTMLRowItem