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

Represents a binder for the properties of a System.Web.UI.WebControls.RadioButtonList. Provides methods to bind the properties of a System.Web.UI.WebControls.RadioButtonList with values.
상속: IControlBinder
파일 보기 프로젝트 열기: NLADP/ADF

공개 메소드들

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

Populates the specified System.Web.UI.WebControls.RadioButtonList with the specified list using the specified parameters. Currently not supported.

Bind ( object control, object values ) : void

Populates the specified System.Web.UI.WebControls.DropDownList with the specified array of objects using the specified parameters. Currently not supported.

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

Populates the specified System.Web.UI.WebControls.RadioButtonList with the specified collection of values using the specified parameters.

The supported types of items in the specified collection of values can be of type Adf.Business.DomainObject, Adf.Business.SmartReferences.SmartReference<T>, Adf.Core.Descriptor, System.Enum etc.

메소드 상세

Bind() 공개 메소드

Populates the specified System.Web.UI.WebControls.RadioButtonList with the specified list using the specified parameters. Currently not supported.
public Bind ( object control, IEnumerable values ) : void
control object The /// to bind to.
values IEnumerable The list to bind.
리턴 void

Bind() 공개 메소드

Populates the specified System.Web.UI.WebControls.DropDownList with the specified array of objects using the specified parameters. Currently not supported.
public Bind ( object control, object values ) : void
control object The /// to bind to.
values object The array of objects to bind.
리턴 void

Bind() 공개 메소드

Populates the specified System.Web.UI.WebControls.RadioButtonList with the specified collection of values using the specified parameters.
The supported types of items in the specified collection of values can be of type Adf.Business.DomainObject, Adf.Business.SmartReferences.SmartReference<T>, Adf.Core.Descriptor, System.Enum etc.
public Bind ( object control, object value, PropertyInfo pi ) : void
control object The /// to bind to.
value object The collection of values to bind.
pi System.Reflection.PropertyInfo The property used to check whether an empty item will be included /// in the . Currently not being /// used.
리턴 void