'Declaration Public Class XHTMLColumnItem Inherits XHTMLItemBase
public class XHTMLColumnItem : XHTMLItemBase
'Declaration Public Class XHTMLColumnItem Inherits XHTMLItemBase
public class XHTMLColumnItem : XHTMLItemBase
Implementing a custom Table column dialog, you will receive an instance of the XHTMLColumnItem class in the IColumnItemDialog.BindData method. Use it to bind the data to the dialog's UI.
void IColumnItemDialog.BindData(XHTMLColumnItem item) { _cbxWidthType.SelectedIndex = (int)Item.WidthType; _cbxVerticalAlignment.SelectedIndex = (int)Item.VerticalAlignment; _cbxHorizontalAlignment.SelectedIndex = (int)Item.HorizontalAlignment; _nudSpan.DataBindings.Add("Value", Item, "Span"); _tbWidthValue.DataBindings.Add("Value", Item, "WidthValue"); _chkWidth.DataBindings.Add("Checked", Item, "UseWidth"); }
System.Object
C1.Win.C1Editor.UICustomization.XHTMLItemBase
C1.Win.C1Editor.UICustomization.XHTMLColumnItem