IXamlType.IsBindable Property

Definition

Gets a value that declares whether the type is bindable.

public:
 property bool IsBindable { bool get(); };
bool IsBindable();
public bool IsBindable { get; }
var boolean = iXamlType.isBindable;
Public ReadOnly Property IsBindable As Boolean

Property Value

Boolean

bool

true if the type is bindable, false if the type is not bindable.

Remarks

The value of this property corresponds to application of the BindableAttribute to the underlying class for native C++ classes. The value is always true for all common language runtime (CLR) classes.

Applies to

See also