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

BindablePropertyAttribute.IsBindable Property

Gets whether the property is bindable.

Namespace: DevExpress.Mvvm.DataAnnotations

Assembly: DevExpress.Mvvm.v18.2.dll

Declaration

public bool IsBindable { get; }

Property Value

Type Description
Boolean

true, if the property is bindable; otherwise, false.

Remarks

See the example below:


public class DataViewModel {
        [BindableProperty(isBindable: false)]
        public virtual bool NotBindableProperty { get; set; }
}
See Also