NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

BindableAttribute Class

Specifies whether a property is appropriate to bind data to.

Object
   Attribute
      MemberAttribute
         BindableAttribute

[Visual Basic]
Public Class BindableAttribute
   Inherits MemberAttribute
[C#]
public class BindableAttribute : MemberAttribute
[C++]
public __gc class BindableAttribute : public MemberAttribute
[JScript]
public class BindableAttribute extends MemberAttribute

Remarks

A data binder typically makes available only the properties marked with Bindable(true). If the property has no bindable attribute or is marked with Bindable(false), then it is not appropriate for binding. The default is false.

Note   When you mark a property with Bindable(true), the value of this attribute is set to the constant member BindableAttribute.Yes. For a property marked with Bindable(false), the value is BindableAttribute.No. Therefore, when you want to check the value of this attribute in your code, you must specify the attribute as BindableAttribute.Yes or BindableAttribute.No.

For more information, see TBD and TBD.

Requirements

Namespace: System.ComponentModel

Assembly: System.dll

See Also

System.ComponentModel Namespace | MemberAttribute | PropertyDescriptor | EventDescriptor