C# 클래스 Adf.Web.Binding.CheckBoxBinder

Represents a binder for a System.Web.UI.WebControls.CheckBox. Provides methods to bind the 'Checked' property of a System.Web.UI.WebControls.CheckBox to a value.
상속: IControlBinder
파일 보기 프로젝트 열기: NLADP/ADF

공개 메소드들

메소드 설명
Bind ( object control, IEnumerable values ) : void

Binds the specified System.Web.UI.WebControls.CheckBox with the specified list. Currently not being supported.

Bind ( object control, object values ) : void

Binds the specified System.Web.UI.WebControls.CheckBox with the specified array of objects. Currently not being supported.

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

Binds the 'Checked' property of the specified System.Web.UI.WebControls.CheckBox with the specified value.

메소드 상세

Bind() 공개 메소드

Binds the specified System.Web.UI.WebControls.CheckBox with the specified list. Currently not being supported.
public Bind ( object control, IEnumerable values ) : void
control object The to bind to.
values IEnumerable The list to bind.
리턴 void

Bind() 공개 메소드

Binds the specified System.Web.UI.WebControls.CheckBox with the specified array of objects. Currently not being supported.
public Bind ( object control, object values ) : void
control object The to bind to.
values object The array of objects to bind.
리턴 void

Bind() 공개 메소드

Binds the 'Checked' property of the specified System.Web.UI.WebControls.CheckBox with the specified value.
public Bind ( object control, object value, PropertyInfo pi ) : void
control object The , the 'Checked' /// property of which is to bind to.
value object The value to bind.
pi System.Reflection.PropertyInfo The Property of the to bind to. /// Currently not being used.
리턴 void