BindableSupport Enum

Definition

Specifies values to indicate whether a property can be bound to a data element or another property.

public enum class BindableSupport
public enum BindableSupport
type BindableSupport = 
Public Enum BindableSupport
Inheritance
BindableSupport

Fields

Default 2

The property is set to the default.

No 0

The property is not bindable at design time.

Yes 1

The property is bindable at design time.

Examples

For an example on how to use the BindableSupport enumeration to indicate whether a property can be bound, see the sample code in BindableAttribute.BindableAttribute.

Remarks

This class is used at design time to indicate whether a designer should offer a property as available for data binding in a visual designer. This class does not affect whether the property can be data bound at runtime.

Applies to

See also