Skip to main content

BindablePropertyAttribute.IsBindable Property

Gets whether the property is bindable.

Namespace: DevExpress.Mvvm.DataAnnotations

Assembly: DevExpress.Mvvm.v23.2.dll

NuGet Packages: DevExpress.Mvvm, DevExpress.Win.Navigation

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