 | DataMappingTableEXTENSION, ROWCONTROLTYPE, SETTINGSCreateNewBindingRow Method |
Creates new Additional Binding control to the table.
InitNewBinding(ROWCONTROLTYPE) is NOT called after this,
so you must populate the values yourself like so:
var row = CreateNewBindingRow();
row.InitProperties(() =>
{
row.MyProperty = ....
});
Namespace: CTExtensions.ExportCore.Config.DataMappingAssembly: CTInterface (in CTInterface.dll) Version: 25.0
Syntaxprotected virtual ROWCONTROLTYPE CreateNewBindingRow(
ROWCONTROLTYPE after = null
)
Protected Overridable Function CreateNewBindingRow (
Optional after As ROWCONTROLTYPE = Nothing
) As ROWCONTROLTYPE
Parameters
- after ROWCONTROLTYPE (Optional)
- Create just under this control, or null to add to the end.
Return Value
ROWCONTROLTYPE
See Also