Skip to main content
A newer version of this page is available. .

EditFormUserControl.SetBoundPropertyName(Control, String) Method

Sets property name that is bound to the data source field.

Namespace: DevExpress.XtraTreeList

Assembly: DevExpress.XtraTreeList.v19.2.dll

Declaration

public void SetBoundPropertyName(
    Control c,
    string value
)

Parameters

Name Type Description
c Control

An object that specifies an editor on the Edit Form.

value String

The property name that is bound to the data source field.

Remarks

The EditFormUserControl class implements the IExtenderProvider interface. The SetBoundPropertyName method supports the ProvideProperty attribute.

Use the SetBoundFieldName method to bind an editor on the Edit Form to a data source field. Use the SetBoundPropertyName method to set the editor’s property that is bound to the data source field. If the property name is not specified, the data source field is bound to the Control.Text or BaseEdit.EditValue property depending on the editor type.

See Also