Click or drag to resize

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:
C#
var row = CreateNewBindingRow();
row.InitProperties(() => 
  {
    row.MyProperty = .... 
  });

Namespace: CTExtensions.ExportCore.Config.DataMapping
Assembly: CTInterface (in CTInterface.dll) Version: 25.0
Syntax
protected virtual ROWCONTROLTYPE CreateNewBindingRow(
	ROWCONTROLTYPE after = null
)

Parameters

after  ROWCONTROLTYPE  (Optional)
Create just under this control, or null to add to the end.

Return Value

ROWCONTROLTYPE
See Also