C# Class Adf.Web.Binding.TextBoxBinder

Represents a binder for the properties of a System.Web.UI.WebControls.TextBox. Provides methods to bind the properties of a System.Web.UI.WebControls.TextBox with values.
Inheritance: IControlBinder
Datei anzeigen Open project: NLADP/ADF

Public Methods

Method Description
Bind ( object control, IEnumerable values ) : void

Binds the properties of the specified System.Web.UI.WebControls.TextBox with the specified list. Currently not supported.

Bind ( object control, object values ) : void

Binds the properties of the specified System.Web.UI.WebControls.TextBox with the specified array of objects. Currently not supported.

Bind ( object control, object value, PropertyInfo pi ) : void

Binds the text of the specified System.Web.UI.WebControls.TextBox with the specified object. A property is specified to determine whether the 'MaxLength' property of the specified System.Web.UI.WebControls.TextBox will be set.

Method Details

Bind() public method

Binds the properties of the specified System.Web.UI.WebControls.TextBox with the specified list. Currently not supported.
public Bind ( object control, IEnumerable values ) : void
control object The , the /// properties of which are to bind to.
values IEnumerable The list to bind.
return void

Bind() public method

Binds the properties of the specified System.Web.UI.WebControls.TextBox with the specified array of objects. Currently not supported.
public Bind ( object control, object values ) : void
control object The , the /// properties of which are to bind to.
values object The array of objects to bind.
return void

Bind() public method

Binds the text of the specified System.Web.UI.WebControls.TextBox with the specified object. A property is specified to determine whether the 'MaxLength' property of the specified System.Web.UI.WebControls.TextBox will be set.
public Bind ( object control, object value, PropertyInfo pi ) : void
control object The , the text /// of which is to bind to.
value object The object to bind.
pi System.Reflection.PropertyInfo The Property to determine whether the 'MaxLength' property of the specified /// will be set.
return void