C# Class Adf.Web.Binding.ImageBinder

Represents a binder for the properties of a System.Web.UI.WebControls.Label. Provides methods to bind the properties of a System.Web.UI.WebControls.Label 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.Label with the specified list. Currently not supported.

Bind ( object control, object values ) : void

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

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

Binds the 'Text' property of the specified System.Web.UI.WebControls.Label with the specified object.

Method Details

Bind() public method

Binds the properties of the specified System.Web.UI.WebControls.Label 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.Label 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' property of the specified System.Web.UI.WebControls.Label with the specified object.
public Bind ( object control, object value, PropertyInfo pi ) : void
control object The , the /// 'Text' property of which is to bind to.
value object The object to bind.
pi System.Reflection.PropertyInfo The Property of the to bind to. /// Currently not being used.
return void