Initialize binding for control.

Namespace: MonoSoftware.Web.DataManager
Assembly: MonoSoftware.Web (in MonoSoftware.Web.dll) Version: 1.0.40.661 (1.0.40.661)

Syntax

C#
public virtual DataManagerBinding Add(
	Control editControl,
	Control previewControl,
	string fieldName,
	params Control[] referencedContainers
)
Visual Basic
Public Overridable Function Add ( 
	editControl As Control,
	previewControl As Control,
	fieldName As String,
	ParamArray referencedContainers As Control()
) As DataManagerBinding
Visual C++
public:
virtual DataManagerBinding^ Add(
	Control^ editControl, 
	Control^ previewControl, 
	String^ fieldName, 
	... array<Control^>^ referencedContainers
)
F#
abstract Add : 
        editControl : Control * 
        previewControl : Control * 
        fieldName : string * 
        referencedContainers : Control[] -> DataManagerBinding 
override Add : 
        editControl : Control * 
        previewControl : Control * 
        fieldName : string * 
        referencedContainers : Control[] -> DataManagerBinding 

Parameters

editControl
Type: System.Web.UI..::..Control
Edit control
previewControl
Type: System.Web.UI..::..Control
Preview control
fieldName
Type: System..::..String
Bind property or field name
referencedContainers
Type: array<System.Web.UI..::..Control>[]()[][]
Referenced containers used with hidden feilds feature

Return Value

Type: DataManagerBinding

See Also